[gtk+/gtk-3-20] GtkActionHelper: Change a message to a warning



commit 90d3c9b31a141a49287e19da224fcc8eb59ac332
Author: Matthew Leeds <mleeds redhat com>
Date:   Wed Jun 15 16:41:58 2016 -0400

    GtkActionHelper: Change a message to a warning
    
    It's almost certainly a programmer error if an action isn't
    activatable because its target and parameter type don't match.
    This commit changes the existing g_message to a g_warning.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=767705

 gtk/gtkactionhelper.c |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/gtk/gtkactionhelper.c b/gtk/gtkactionhelper.c
index 24f006c..6a77b03 100644
--- a/gtk/gtkactionhelper.c
+++ b/gtk/gtkactionhelper.c
@@ -147,12 +147,12 @@ gtk_action_helper_action_added (GtkActionHelper    *helper,
 
   if (!helper->can_activate)
     {
-      GTK_NOTE(ACTIONS, g_message ("%s: action %s can't be activated due to parameter type mismatch "
-                                   "(parameter type %s, target type %s)",
-                                   "actionhelper",
-                                   helper->action_name,
-                                   parameter_type ? g_variant_type_peek_string (parameter_type) : "NULL",
-                                   helper->target ? g_variant_get_type_string (helper->target) : "NULL"));
+      g_warning ("%s: action %s can't be activated due to parameter type mismatch "
+                 "(parameter type %s, target type %s)",
+                 "actionhelper",
+                 helper->action_name,
+                 parameter_type ? g_variant_type_peek_string (parameter_type) : "NULL",
+                 helper->target ? g_variant_get_type_string (helper->target) : "NULL");
       return;
     }
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]