From: <sa...@us...> - 2006-10-14 18:28:32
|
Revision: 17480 http://svn.sourceforge.net/gaim/?rev=17480&view=rev Author: sadrul Date: 2006-10-14 11:28:22 -0700 (Sat, 14 Oct 2006) Log Message: ----------- Change the string to make sure it's a little more descriptive. Thanks to John Bailey (rekkanoryo) for noticing this. Modified Paths: -------------- trunk/libgaim/plugin.c Modified: trunk/libgaim/plugin.c =================================================================== --- trunk/libgaim/plugin.c 2006-10-14 05:29:11 UTC (rev 17479) +++ trunk/libgaim/plugin.c 2006-10-14 18:28:22 UTC (rev 17480) @@ -362,7 +362,8 @@ else if (plugin->info->ui_requirement && strcmp(plugin->info->ui_requirement, gaim_core_get_ui())) { - plugin->error = g_strdup_printf("The UI requirement for this plugin is not met."); + plugin->error = g_strdup_printf("The UI requirement (%s) for this plugin is not met.", + plugin->info->ui_requirement); gaim_debug_error("plugins", "%s is not loadable: The UI requirement is not met.", plugin->path); plugin->unloadable = TRUE; return plugin; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |