GtkDialog: Reduce a g_warning to a g_message

Otherwise, this breaks our testsuite.
This commit is contained in:
Matthias Clasen 2014-05-02 20:47:56 -04:00
parent 9d7f7ddadf
commit 47094a2a8a

View File

@ -794,7 +794,7 @@ gtk_dialog_map (GtkWidget *widget)
GtkDialog *dialog = GTK_DIALOG (widget);
if (gtk_window_get_transient_for (window) == NULL)
g_warning ("GtkDialog mapped without a transient parent. This is discouraged.");
g_message ("GtkDialog mapped without a transient parent. This is discouraged.");
GTK_WIDGET_CLASS (gtk_dialog_parent_class)->map (widget);