aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/eventedit.h
diff options
context:
space:
mode:
authorHavoc Pennington <hp@pobox.com>1998-04-26 11:22:37 +0800
committerHavoc Pennington <hp@src.gnome.org>1998-04-26 11:22:37 +0800
commit5d80262bb53f00a69aacc16720034d403f6c6b5f (patch)
tree66982f745669ba13624d6cdd15094bbd8707c71f /calendar/gui/eventedit.h
parent95b6ff339e69befec13b7a5f3831d1b74db0d87e (diff)
downloadgsoc2013-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/gui/eventedit.h')
-rw-r--r--calendar/gui/eventedit.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/calendar/gui/eventedit.h b/calendar/gui/eventedit.h
index 73dd677d44..9cb80e3912 100644
--- a/calendar/gui/eventedit.h
+++ b/calendar/gui/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;