# HG changeset patch # User Herman Bloggs # Date 1064370104 0 # Node ID 906567be99b2be8a281d93cc1c966c12587b0f69 # Parent 6ed0a1c045b48ae8dcd52b4513677556d02cc5fe [gaim-migrate @ 7476] Popup notification when moving data dir committer: Tailor Script diff -r 6ed0a1c045b4 -r 906567be99b2 src/win32/win32dep.c --- a/src/win32/win32dep.c Wed Sep 24 01:28:33 2003 +0000 +++ b/src/win32/win32dep.c Wed Sep 24 02:21:44 2003 +0000 @@ -34,6 +34,7 @@ #include "gaim.h" #include "debug.h" +#include "notify.h" #include "stdafx.h" #include "resource.h" @@ -43,6 +44,8 @@ #include "zlib.h" #include "untar.h" +# include +# define _(x) gettext(x) /* * DEFINES & MACROS @@ -466,6 +469,13 @@ dir_old = g_dir_open(old_home, 0, NULL); dir_new = g_dir_open(new_home, 0, NULL); if(dir_old && !dir_new) { + gaim_notify_message(NULL, + GAIM_NOTIFY_MSG_INFO, + _("Notification"), + _("Moving Gaim user settings directory to:"), + new_home, + NULL, + NULL); if(MoveFile(old_home, new_home) != 0) gaim_debug(GAIM_DEBUG_INFO, "wgaim", "Success moving '.gaim' directory\n"); }