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
This commit is contained in:
Matthew Leeds 2016-06-15 16:41:58 -04:00 committed by Matthias Clasen
parent 76bacfde6e
commit 51799d41e4

View File

@ -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;
}