aboutsummaryrefslogtreecommitdiff
path: root/sgm-flexible-mnemonics.c
diff options
context:
space:
mode:
Diffstat (limited to 'sgm-flexible-mnemonics.c')
-rw-r--r--sgm-flexible-mnemonics.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/sgm-flexible-mnemonics.c b/sgm-flexible-mnemonics.c
index 8249c95..a7290b8 100644
--- a/sgm-flexible-mnemonics.c
+++ b/sgm-flexible-mnemonics.c
@@ -50,6 +50,10 @@
#include <glib.h>
+#undef G_LOG_DOMAIN
+#define G_LOG_DOMAIN "SGM-Flexible-Mnemonics-Module"
+
+
static void (*original_gtk_label_size_allocate) (GtkWidget *widget,
GtkAllocation *allocation);
@@ -68,8 +72,9 @@ g_module_check_init (GModule *module)
*/
if (gtk_check_version (3,9,8) != NULL)
{
- return "Your version of GTK+ is old enough that this module is redundant.\n"
- "This module will therefore not load.";
+ g_warning ("\n Your version of GTK+ is old enough that this module is redundant.\n"
+ " This module will therefore not load.");
+ return "";
}
/*
bgstack15