mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-25 05:01:09 +00:00
Warn
Mon Nov 12 19:33:52 2001 Owen Taylor <otaylor@redhat.com> * gtk/gtkmessagedialog.c (gtk_message_dialog_new): Warn
This commit is contained in:
parent
be2d0ae2ce
commit
aebe24f2bb
@ -1,3 +1,8 @@
|
||||
Mon Nov 12 19:33:52 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkmessagedialog.c (gtk_message_dialog_new): Warn
|
||||
if GTK_DIALOG_NO_SEPARATOR is passed in and ignore it.
|
||||
|
||||
2001-11-12 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* gtk/gtktreeview.c: Documentation fixes. (#64377)
|
||||
|
@ -1,3 +1,8 @@
|
||||
Mon Nov 12 19:33:52 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkmessagedialog.c (gtk_message_dialog_new): Warn
|
||||
if GTK_DIALOG_NO_SEPARATOR is passed in and ignore it.
|
||||
|
||||
2001-11-12 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* gtk/gtktreeview.c: Documentation fixes. (#64377)
|
||||
|
@ -1,3 +1,8 @@
|
||||
Mon Nov 12 19:33:52 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkmessagedialog.c (gtk_message_dialog_new): Warn
|
||||
if GTK_DIALOG_NO_SEPARATOR is passed in and ignore it.
|
||||
|
||||
2001-11-12 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* gtk/gtktreeview.c: Documentation fixes. (#64377)
|
||||
|
@ -1,3 +1,8 @@
|
||||
Mon Nov 12 19:33:52 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkmessagedialog.c (gtk_message_dialog_new): Warn
|
||||
if GTK_DIALOG_NO_SEPARATOR is passed in and ignore it.
|
||||
|
||||
2001-11-12 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* gtk/gtktreeview.c: Documentation fixes. (#64377)
|
||||
|
@ -1,3 +1,8 @@
|
||||
Mon Nov 12 19:33:52 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkmessagedialog.c (gtk_message_dialog_new): Warn
|
||||
if GTK_DIALOG_NO_SEPARATOR is passed in and ignore it.
|
||||
|
||||
2001-11-12 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* gtk/gtktreeview.c: Documentation fixes. (#64377)
|
||||
|
@ -1,3 +1,8 @@
|
||||
Mon Nov 12 19:33:52 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkmessagedialog.c (gtk_message_dialog_new): Warn
|
||||
if GTK_DIALOG_NO_SEPARATOR is passed in and ignore it.
|
||||
|
||||
2001-11-12 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* gtk/gtktreeview.c: Documentation fixes. (#64377)
|
||||
|
@ -1,3 +1,8 @@
|
||||
Mon Nov 12 19:33:52 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkmessagedialog.c (gtk_message_dialog_new): Warn
|
||||
if GTK_DIALOG_NO_SEPARATOR is passed in and ignore it.
|
||||
|
||||
2001-11-12 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* gtk/gtktreeview.c: Documentation fixes. (#64377)
|
||||
|
@ -191,6 +191,12 @@ gtk_message_dialog_new (GtkWindow *parent,
|
||||
widget = GTK_WIDGET (gtk_type_new (GTK_TYPE_MESSAGE_DIALOG));
|
||||
dialog = GTK_DIALOG (widget);
|
||||
|
||||
if (flags & GTK_DIALOG_NO_SEPARATOR)
|
||||
{
|
||||
g_warning ("The GTK_DIALOG_NO_SEPARATOR flag cannot be used for GtkMessageDialog");
|
||||
flags &= ~GTK_DIALOG_NO_SEPARATOR;
|
||||
}
|
||||
|
||||
if (message_format)
|
||||
{
|
||||
va_start (args, message_format);
|
||||
|
Loading…
Reference in New Issue
Block a user