diff options
| author | Neil Jagdish Patel <njpatel@Pulse> | 2010-07-29 23:25:47 +0100 |
|---|---|---|
| committer | Neil Jagdish Patel <njpatel@Pulse> | 2010-07-29 23:25:47 +0100 |
| commit | f22775e164913c6b9738d73f652a9e3db56f2814 (patch) | |
| tree | 1026e3df2a91aa84a40b2dd84730d7a53585f0d6 /unity-private/panel | |
| parent | 646c8c5f17eaba65a18d05909889649cf8904e27 (diff) | |
| parent | 586fca73bedd39d52680552efde36729e240271d (diff) | |
[merge] trunk
(bzr r403.3.2)
Diffstat (limited to 'unity-private/panel')
| -rw-r--r-- | unity-private/panel/panel-indicator-model.vala | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unity-private/panel/panel-indicator-model.vala b/unity-private/panel/panel-indicator-model.vala index 665f7adcf..051957ca9 100644 --- a/unity-private/panel/panel-indicator-model.vala +++ b/unity-private/panel/panel-indicator-model.vala @@ -90,10 +90,10 @@ namespace Unity.Panel.Indicators } /* We need to look for icons in an specific location */ - Gtk.IconTheme.get_default ().append_search_path (INDICATORICONSDIR); + Gtk.IconTheme.get_default ().append_search_path (Config.INDICATORICONSDIR); /* Start loading 'em in. .so are located in INDICATORDIR*/ - var dir = File.new_for_path (INDICATORDIR); + var dir = File.new_for_path (Config.INDICATORDIR); try { var e = dir.enumerate_children (FILE_ATTRIBUTE_STANDARD_NAME, 0,null); @@ -118,7 +118,7 @@ namespace Unity.Panel.Indicators sos.sort ((CompareFunc)indicator_sort_func); foreach (string leaf in sos) - this.load_indicator (INDICATORDIR + leaf, leaf); + this.load_indicator (Config.INDICATORDIR + leaf, leaf); } catch (Error error) { |
