diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/core/core.c | 2 | ||||
-rw-r--r-- | src/gui/core/theme.c | 2 | ||||
-rw-r--r-- | src/main.c | 3 |
3 files changed, 4 insertions, 3 deletions
diff --git a/src/core/core.c b/src/core/core.c index 6ba54c1..b382e34 100644 --- a/src/core/core.c +++ b/src/core/core.c @@ -71,7 +71,7 @@ bool load_all_basic_components(void) srand(time(NULL) + getpid()); - add_pixmap_directory(PACKAGE_DATA_DIR); + add_pixmap_directory(PIXMAPS_DIR); add_pixmap_directory(PACKAGE_SOURCE_DIR G_DIR_SEPARATOR_S "pixmaps"); cfgdir = get_xdg_config_dir("chrysalide" G_DIR_SEPARATOR_S "chrysalide"); diff --git a/src/gui/core/theme.c b/src/gui/core/theme.c index 7719573..895a1a5 100644 --- a/src/gui/core/theme.c +++ b/src/gui/core/theme.c @@ -56,7 +56,7 @@ static bool look_for_named_theme(GdkScreen *, const char *, const char *, gboole static const char *_themes_directories[] = { PACKAGE_SOURCE_DIR G_DIR_SEPARATOR_S "themes", - PACKAGE_DATA_DIR G_DIR_SEPARATOR_S "themes", + THEMES_DIR, NULL }; @@ -122,7 +122,8 @@ static void show_chrysalide_version(void) printf("\n"); - printf(_("Data directory: %s\n"), PACKAGE_DATA_DIR); + printf(_("Pictures directory: %s\n"), PIXMAPS_DIR); + printf(_("Themes directory: %s\n"), THEMES_DIR); printf(_("Plugins directory: %s\n"), PLUGINS_DIR); printf(_("Locale directory: %s\n"), LOCALE_DIR); |