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:
Owen Taylor 2001-11-13 00:35:24 +00:00 committed by Owen Taylor
parent be2d0ae2ce
commit aebe24f2bb
8 changed files with 41 additions and 0 deletions

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

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