diff options
| author | Neil Jagdish Patel <neil.patel@canonical.com> | 2010-01-20 13:52:53 +0000 |
|---|---|---|
| committer | Neil Jagdish Patel <neil.patel@canonical.com> | 2010-01-20 13:52:53 +0000 |
| commit | ca6b139ff58498ab486c62b99979fd56381dbbd7 (patch) | |
| tree | 1f016de8fbfa8c1d16a0d7dc7baf7363e44e98fa /src | |
| parent | 0a97978f76c32c4843af997015f0a5cf502c2a62 (diff) | |
[places-view] Remove unnecessary namespacing
modified: src/places/places-view.vala (bzr r61.2.7)
Diffstat (limited to 'src')
| -rw-r--r-- | src/places/places-view.vala | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/places/places-view.vala b/src/places/places-view.vala index c91e64c17..3d2c36f55 100644 --- a/src/places/places-view.vala +++ b/src/places/places-view.vala @@ -24,8 +24,8 @@ namespace Unity.Places { public Model model { get; construct; } - private Unity.Places.Bar.View bar_view; - private Unity.Places.Default.View default_view; + private Bar.View bar_view; + private Default.View default_view; public View (Model model) { @@ -35,10 +35,10 @@ namespace Unity.Places this.orientation = Ctk.Orientation.VERTICAL; - this.bar_view = new Unity.Places.Bar.View (this.model); + this.bar_view = new Bar.View (this.model); this.bar_view.padding = bpadding; - this.default_view = new Unity.Places.Default.View (); + this.default_view = new Default.View (); this.add_actor (this.bar_view); this.add_actor (this.default_view); |
