SF.net SVN: geany: [2445] trunk

eht16 at users.sourceforge.net eht16 at xxxxx
Thu Apr 3 17:24:06 UTC 2008


Revision: 2445
          http://geany.svn.sourceforge.net/geany/?rev=2445&view=rev
Author:   eht16
Date:     2008-04-03 10:24:06 -0700 (Thu, 03 Apr 2008)

Log Message:
-----------
Show warning about ABI mismatch when loading plugins in the status message window to avoid confusion about missing plugins.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/src/plugins.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2008-04-03 16:06:41 UTC (rev 2444)
+++ trunk/ChangeLog	2008-04-03 17:24:06 UTC (rev 2445)
@@ -17,6 +17,9 @@
    Fix missing menu accelerators for default keybindings on startup.
    Fix too small dialog window when showing the keyboard shortcuts
    dialog from the help menu.
+ * src/plugins.c:
+   Show warning about ABI mismatch when loading plugins in the status
+   message window to avoid confusion about missing plugins.
 
 
 2008-04-02  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>

Modified: trunk/src/plugins.c
===================================================================
--- trunk/src/plugins.c	2008-04-03 16:06:41 UTC (rev 2444)
+++ trunk/src/plugins.c	2008-04-03 17:24:06 UTC (rev 2445)
@@ -338,6 +338,8 @@
 		result = version_check(abi_version);
 		if (result < 0)
 		{
+			ui_set_statusbar(TRUE, _("The plugin \"%s\" is not binary compatible with this "
+				"release of Geany - please recompile it."), g_module_name(module));
 			geany_debug("Plugin \"%s\" is not binary compatible with this "
 				"release of Geany - recompile it.", g_module_name(module));
 			return FALSE;


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list