summaryrefslogtreecommitdiff
path: root/stickynotes/stickynotes.c
diff options
context:
space:
mode:
authorPerberos <[email protected]>2011-12-08 13:35:59 -0300
committerPerberos <[email protected]>2011-12-08 13:35:59 -0300
commit09d3b00ca94376ddcb2b1cdb53d6448708936f4f (patch)
treeab147d66e8ba2f91c1f2cc3e59c51a24c04d371e /stickynotes/stickynotes.c
parentb67680616f66c648bbad1e6744ab4664800635d3 (diff)
downloadmate-applets-09d3b00ca94376ddcb2b1cdb53d6448708936f4f.tar.bz2
mate-applets-09d3b00ca94376ddcb2b1cdb53d6448708936f4f.tar.xz
GDK_DISPLAY() is deprecated
Diffstat (limited to 'stickynotes/stickynotes.c')
-rw-r--r--stickynotes/stickynotes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/stickynotes/stickynotes.c b/stickynotes/stickynotes.c
index 367a4507..756fe125 100644
--- a/stickynotes/stickynotes.c
+++ b/stickynotes/stickynotes.c
@@ -839,7 +839,7 @@ stickynotes_save_now (void)
g_free(body);
}
- /* The XML file is $HOME/.mate2/stickynotes_applet, most probably */
+ /* The XML file is $HOME/.config/mate/stickynotes_applet, most probably */
{
gchar *file = g_strdup_printf("%s%s", g_get_home_dir(),
XML_PATH);
@@ -875,7 +875,7 @@ stickynotes_load (GdkScreen *screen)
GList *new_notes, *tmp1; /* Lists of StickyNote*'s */
GList *new_nodes; /* Lists of xmlNodePtr's */
int x, y, w, h;
- /* The XML file is $HOME/.mate2/stickynotes_applet, most probably */
+ /* The XML file is $HOME/.config/mate/stickynotes_applet, most probably */
{
gchar *file = g_strdup_printf("%s%s", g_get_home_dir(),
XML_PATH);