aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-01-20 16:16:43 -0600
committerTed Gould <ted@gould.cx>2010-01-20 16:16:43 -0600
commit26a0d6f4bb11f7f31d1e8f0f6218cfca859f8a1f (patch)
tree61183d35df543acafcc784fb22f22c7241ad6e4f
parent33644ed5b49b8af5a0d6b2f702c783319285db8d (diff)
downloadayatana-indicator-application-26a0d6f4bb11f7f31d1e8f0f6218cfca859f8a1f.tar.gz
ayatana-indicator-application-26a0d6f4bb11f7f31d1e8f0f6218cfca859f8a1f.tar.bz2
ayatana-indicator-application-26a0d6f4bb11f7f31d1e8f0f6218cfca859f8a1f.zip
Moving directory and filename into defines
-rw-r--r--src/application-service-lru-file.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/application-service-lru-file.c b/src/application-service-lru-file.c
index 26ff2e8..a13227a 100644
--- a/src/application-service-lru-file.c
+++ b/src/application-service-lru-file.c
@@ -12,6 +12,9 @@
#define ENTRY_LAST_TIME "last-time"
#define ENTRY_VERSION "version"
+#define CONFIG_DIR ("indicators" G_DIR_SEPARATOR_S "application")
+#define CONFIG_FILE "lru-file.json"
+
typedef struct _AppLruFilePrivate AppLruFilePrivate;
struct _AppLruFilePrivate {
GHashTable * apps;
@@ -70,7 +73,7 @@ app_lru_file_init (AppLruFile *self)
/* Now let's build some stuff */
priv->apps = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, app_data_free);
- priv->filename = g_build_filename(g_get_user_config_dir(), "indicators", "application", "lru-file.json", NULL);
+ priv->filename = g_build_filename(g_get_user_config_dir(), CONFIG_DIR, CONFIG_FILE, NULL);
/* No reason to delay other stuff for this, we'll
merge any values that get touched. */
@@ -227,7 +230,7 @@ clean_off (gpointer data)
GError * error = NULL;
/* Check to see if our directory exists. Build it if not. */
- gchar * dirname = g_build_filename(g_get_user_config_dir(), "indicators", "application", NULL);
+ gchar * dirname = g_build_filename(g_get_user_config_dir(), CONFIG_DIR, NULL);
if (!g_file_test(dirname, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR)) {
GFile * dirfile = g_file_new_for_path(dirname);
g_file_make_directory_with_parents(dirfile, NULL, NULL);