/pidgin/main: 37a0c111a392: win32: build fixes

Daniel Atallah datallah at pidgin.im
Sat Nov 23 12:37:25 EST 2013


Changeset: 37a0c111a392c4afb71d5ed67f95f67c9c3f3fd4
Author:	 Daniel Atallah <datallah at pidgin.im>
Date:	 2013-11-23 12:36 -0500
Branch:	 default
URL: https://hg.pidgin.im/pidgin/main/rev/37a0c111a392

Description:

win32: build fixes

diffstat:

 pidgin/gtkft.c    |  5 +++--
 pidgin/gtkutils.c |  4 ++--
 2 files changed, 5 insertions(+), 4 deletions(-)

diffs (37 lines):

diff --git a/pidgin/gtkft.c b/pidgin/gtkft.c
--- a/pidgin/gtkft.c
+++ b/pidgin/gtkft.c
@@ -471,12 +471,13 @@ open_button_cb(GtkButton *button, Pidgin
 	if (code == SE_ERR_ASSOCINCOMPLETE || code == SE_ERR_NOASSOC)
 	{
 		purple_notify_error(dialog, NULL,
-				_("There is no application configured to open this type of file."), NULL);
+				_("There is no application configured to open this type of file."), NULL,
+				NULL);
 	}
 	else if (code < 32)
 	{
 		purple_notify_error(dialog, NULL,
-				_("An error occurred while opening the file."), NULL);
+				_("An error occurred while opening the file."), NULL, NULL);
 		purple_debug_warning("ft", "filename: %s; code: %d\n",
 				purple_xfer_get_local_filename(dialog->selected_xfer), code);
 	}
diff --git a/pidgin/gtkutils.c b/pidgin/gtkutils.c
--- a/pidgin/gtkutils.c
+++ b/pidgin/gtkutils.c
@@ -3246,12 +3246,12 @@ file_open_uri(GtkWebView *webview, const
 	if (code == SE_ERR_ASSOCINCOMPLETE || code == SE_ERR_NOASSOC)
 	{
 		purple_notify_error(webview, NULL,
-				_("There is no application configured to open this type of file."), NULL);
+				_("There is no application configured to open this type of file."), NULL, NULL);
 	}
 	else if (code < 32)
 	{
 		purple_notify_error(webview, NULL,
-				_("An error occurred while opening the file."), NULL);
+				_("An error occurred while opening the file."), NULL, NULL);
 		purple_debug_warning("gtkutils", "filename: %s; code: %d\n", uri, code);
 	}
 #else



More information about the Commits mailing list