diff options
author | Federico Mena Quintero <federico@nuclecu.unam.mx> | 1998-04-08 10:35:05 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-08 10:35:05 +0800 |
commit | 70143f6e1fae1dd7d2c368215facacdd990603e0 (patch) | |
tree | ecd577053b3125fd24c03a1c50134505b320d0eb /calendar/gui/eventedit.c | |
parent | b5a61327da495147f0a45b4a9f6ee3a77687eeab (diff) | |
download | gsoc2013-evolution-70143f6e1fae1dd7d2c368215facacdd990603e0.tar gsoc2013-evolution-70143f6e1fae1dd7d2c368215facacdd990603e0.tar.gz gsoc2013-evolution-70143f6e1fae1dd7d2c368215facacdd990603e0.tar.bz2 gsoc2013-evolution-70143f6e1fae1dd7d2c368215facacdd990603e0.tar.lz gsoc2013-evolution-70143f6e1fae1dd7d2c368215facacdd990603e0.tar.xz gsoc2013-evolution-70143f6e1fae1dd7d2c368215facacdd990603e0.tar.zst gsoc2013-evolution-70143f6e1fae1dd7d2c368215facacdd990603e0.zip |
Removed unused global variable parent_class.
1998-04-07 Federico Mena Quintero <federico@nuclecu.unam.mx>
* eventedit.c: Removed unused global variable parent_class.
* eventedit.h: Renamed gtk_window field to window.
Made the parent_class field in the EventEditorClass structure be a
GtkWindowClass, not a gnome property box class.
Added prototype for event_editor_get_type().
svn path=/trunk/; revision=110
Diffstat (limited to 'calendar/gui/eventedit.c')
-rw-r--r-- | calendar/gui/eventedit.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/calendar/gui/eventedit.c b/calendar/gui/eventedit.c index 7846eab86e..f2158b50f4 100644 --- a/calendar/gui/eventedit.c +++ b/calendar/gui/eventedit.c @@ -13,7 +13,6 @@ #include "timeutil.h" static void event_editor_init (EventEditor *ee); -GtkWindow *parent_class; /* Note: do not i18n these strings, they are part of the vCalendar protocol */ char *class_names [] = { "PUBLIC", "PRIVATE", "CONFIDENTIAL" }; @@ -34,7 +33,6 @@ event_editor_get_type (void) (GtkArgGetFunc) NULL, }; event_editor_type = gtk_type_unique (gtk_window_get_type (), &event_editor_info); - parent_class = gtk_type_class (gtk_window_get_type ()); } return event_editor_type; } |