summaryrefslogtreecommitdiff
path: root/stickynotes/stickynotes.c
diff options
context:
space:
mode:
Diffstat (limited to 'stickynotes/stickynotes.c')
-rw-r--r--stickynotes/stickynotes.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/stickynotes/stickynotes.c b/stickynotes/stickynotes.c
index 880a1933..fc273943 100644
--- a/stickynotes/stickynotes.c
+++ b/stickynotes/stickynotes.c
@@ -840,13 +840,13 @@ stickynotes_save_now (void)
}
/* The XML file is $HOME/.config/mate/stickynotes_applet, most probably */
- //{
+ {
gchar* file = g_build_filename(g_get_home_dir(), ".config", "mate", "stickynotes-applet.xml", NULL);
xmlSaveFormatFile(file, doc, 1);
g_free(file);
- //}
+ }
xmlFreeDoc(doc);
@@ -884,7 +884,7 @@ stickynotes_load (GdkScreen *screen)
if (g_file_test(file, G_FILE_TEST_EXISTS))
{
/* load file */
- doc = xmlParseFile(file);
+ doc = xmlParseFile(file);
}
else
{