# HG changeset patch # User Richard Laager # Date 1185062890 0 # Node ID 27f2cdbbb701a6f4fa5e58d855b417a0be81bc8c # Parent 37d38ffe32cdc8c6b9e685aa5d6bc2fab287037c# Parent f054b6fa9dfcb986aa38483e8c4f68d5ce74005c merge of '43d9c75fd0df1204f9b64d3ec943927d608eb187' and 'a7f1a5a424b89f3958cb75f5b098786a43b72708' diff -r 37d38ffe32cd -r 27f2cdbbb701 configure.ac --- a/configure.ac Sat Jul 21 23:08:15 2007 +0000 +++ b/configure.ac Sun Jul 22 00:08:10 2007 +0000 @@ -2069,6 +2069,8 @@ pidgin/pixmaps/icons/Makefile pidgin/pixmaps/icons/16/Makefile pidgin/pixmaps/icons/16/scalable/Makefile + pidgin/pixmaps/icons/22/Makefile + pidgin/pixmaps/icons/22/scalable/Makefile pidgin/pixmaps/icons/24/Makefile pidgin/pixmaps/icons/24/scalable/Makefile pidgin/pixmaps/icons/32/Makefile diff -r 37d38ffe32cd -r 27f2cdbbb701 pidgin/pixmaps/icons/22/Makefile.am --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/icons/22/Makefile.am Sun Jul 22 00:08:10 2007 +0000 @@ -0,0 +1,8 @@ +SUBDIRS = scalable + +EXTRA_DIST = pidgin.png + +pidginiconspixdir = $(datadir)/icons/hicolor/24x24/apps + +pidginiconspix_DATA = $(EXTRA_DIST) + diff -r 37d38ffe32cd -r 27f2cdbbb701 pidgin/pixmaps/icons/22/pidgin.png Binary file pidgin/pixmaps/icons/22/pidgin.png has changed diff -r 37d38ffe32cd -r 27f2cdbbb701 pidgin/pixmaps/icons/22/scalable/Makefile.am --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/icons/22/scalable/Makefile.am Sun Jul 22 00:08:10 2007 +0000 @@ -0,0 +1,1 @@ +EXTRA_DIST = pidgin.svg diff -r 37d38ffe32cd -r 27f2cdbbb701 pidgin/pixmaps/icons/22/scalable/pidgin.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/icons/22/scalable/pidgin.svg Sun Jul 22 00:08:10 2007 +0000 @@ -0,0 +1,591 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff -r 37d38ffe32cd -r 27f2cdbbb701 pidgin/plugins/gevolution/gevolution.c --- a/pidgin/plugins/gevolution/gevolution.c Sat Jul 21 23:08:15 2007 +0000 +++ b/pidgin/plugins/gevolution/gevolution.c Sun Jul 22 00:08:10 2007 +0000 @@ -227,11 +227,13 @@ if (app != NULL) { char *command_line = g_strdup_printf("%s mailto:%s", app, mail); + char *quoted = g_shell_quote(command_line); g_free(app); g_free(mail); - g_spawn_command_line_async(command_line, NULL); + g_spawn_command_line_async(quoted, NULL); g_free(command_line); + g_free(quoted); } else {