From 19fbfd611a07c4ef1d256a9d8eeda639599a2038 Mon Sep 17 00:00:00 2001 From: Nick Treleaven Date: Thu, 9 Apr 2009 12:12:58 +0000 Subject: [PATCH] Don't show 'plugin is not binary compatible' messages on the status bar, only the status window. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@3705 ea778897-0a13-0410-b9d1-a72fbfd435f5 --- ChangeLog | 7 +++++++ src/plugins.c | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c5c2a77d..cf9e26b3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2009-04-09 Nick Treleaven + + * src/plugins.c: + Don't show 'plugin is not binary compatible' messages on the status + bar, only the status window. + + 2009-04-08 Enrico Tröger * src/socket.c: diff --git a/src/plugins.c b/src/plugins.c index 510c790f..402fa818 100644 --- a/src/plugins.c +++ b/src/plugins.c @@ -437,7 +437,7 @@ plugin_check_version(GModule *module) if (result < 0) { - ui_set_statusbar(TRUE, _("The plugin \"%s\" is not binary compatible with this " + msgwin_status_add(_("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));