changeset 14726:f93d632ac8d8

[gaim-migrate @ 17480] Change the string to make sure it's a little more descriptive. Thanks to John Bailey (rekkanoryo) for noticing this. committer: Tailor Script <tailor@pidgin.im>
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Sat, 14 Oct 2006 18:28:22 +0000
parents 62366c6a10eb
children 9baeeaa365d1
files libgaim/plugin.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libgaim/plugin.c	Sat Oct 14 05:29:11 2006 +0000
+++ b/libgaim/plugin.c	Sat Oct 14 18:28:22 2006 +0000
@@ -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;