diff options
author | Havoc Pennington <hp@pobox.com> | 1998-04-26 11:22:37 +0800 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 1998-04-26 11:22:37 +0800 |
commit | 5d80262bb53f00a69aacc16720034d403f6c6b5f (patch) | |
tree | 66982f745669ba13624d6cdd15094bbd8707c71f /calendar/eventedit.h | |
parent | 95b6ff339e69befec13b7a5f3831d1b74db0d87e (diff) | |
download | gsoc2013-evolution-5d80262bb53f00a69aacc16720034d403f6c6b5f.tar gsoc2013-evolution-5d80262bb53f00a69aacc16720034d403f6c6b5f.tar.gz gsoc2013-evolution-5d80262bb53f00a69aacc16720034d403f6c6b5f.tar.bz2 gsoc2013-evolution-5d80262bb53f00a69aacc16720034d403f6c6b5f.tar.lz gsoc2013-evolution-5d80262bb53f00a69aacc16720034d403f6c6b5f.tar.xz gsoc2013-evolution-5d80262bb53f00a69aacc16720034d403f6c6b5f.tar.zst gsoc2013-evolution-5d80262bb53f00a69aacc16720034d403f6c6b5f.zip |
Descend from GnomeDialog. Took vbox out of class structure; use
Sat Apr 25 22:20:45 1998 Havoc Pennington <hp@pobox.com>
* eventedit.c, eventedit.h: Descend from GnomeDialog. Took vbox
out of class structure; use GnomeDialog vbox
instead. gnome_dialog_set_destroy instead of destroying in button
callbacks. Don't create buttons, separator, or vbox manually.
#include <libgnomeui/gnome-dialog.h>.
svn path=/trunk/; revision=197
Diffstat (limited to 'calendar/eventedit.h')
-rw-r--r-- | calendar/eventedit.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/calendar/eventedit.h b/calendar/eventedit.h index 73dd677d44..9cb80e3912 100644 --- a/calendar/eventedit.h +++ b/calendar/eventedit.h @@ -9,6 +9,7 @@ #define EVENT_EDITOR_H #include "gnome-cal.h" +#include <libgnomeui/gnome-dialog.h> BEGIN_GNOME_DECLS @@ -19,9 +20,8 @@ BEGIN_GNOME_DECLS typedef struct { - GtkWindow window; + GnomeDialog dialog; GtkWidget *notebook; - GtkWidget *vbox; GtkWidget *general; GtkWidget *general_table; @@ -64,7 +64,7 @@ typedef struct { } EventEditor; typedef struct { - GtkWindowClass parent_class; + GnomeDialogClass parent_class; } EventEditorClass; |