diff options
Diffstat (limited to 'panel/datetime-prefs.c')
-rw-r--r-- | panel/datetime-prefs.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/panel/datetime-prefs.c b/panel/datetime-prefs.c index 55456ac..c1e70b1 100644 --- a/panel/datetime-prefs.c +++ b/panel/datetime-prefs.c @@ -33,7 +33,11 @@ with this program. If not, see <http://www.gnu.org/licenses/>. #include <gdk/gdkkeysyms.h> #include <gtk/gtk.h> #include <polkit/polkit.h> +#if USE_UNITY +#include <libunity-control-center/cc-panel.h> +#else #include <libgnome-control-center/cc-panel.h> +#endif #include <timezonemap/cc-timezone-map.h> #include <timezonemap/timezone-completion.h> @@ -42,7 +46,11 @@ with this program. If not, see <http://www.gnu.org/licenses/>. #include "utils.h" #include "datetime-prefs-locations.h" -#define DATETIME_DIALOG_UI_FILE PKGDATADIR "/datetime-dialog.ui" +#if USE_UNITY +#define DATETIME_DIALOG_UI_FILE PKGDATADIR "/unity-control-center/datetime-dialog.ui" +#else +#define DATETIME_DIALOG_UI_FILE PKGDATADIR "/gnome-control-center/datetime-dialog.ui" +#endif #define INDICATOR_DATETIME_TYPE_PANEL indicator_datetime_panel_get_type() |