aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/calendar-view.c
diff options
context:
space:
mode:
authorLi Yuan <li.yuan@sun.com>2005-03-23 22:54:04 +0800
committerHarry Lu <haip@src.gnome.org>2005-03-23 22:54:04 +0800
commitd72da37be9a545ddcb8aba164a6defa6e74cbc22 (patch)
tree89a5f2e4ca65934550709d10b60068ca6c09f908 /calendar/gui/calendar-view.c
parenta8df0ef392c394f742c154a1ce235b2f1ddce9d3 (diff)
downloadgsoc2013-evolution-d72da37be9a545ddcb8aba164a6defa6e74cbc22.tar
gsoc2013-evolution-d72da37be9a545ddcb8aba164a6defa6e74cbc22.tar.gz
gsoc2013-evolution-d72da37be9a545ddcb8aba164a6defa6e74cbc22.tar.bz2
gsoc2013-evolution-d72da37be9a545ddcb8aba164a6defa6e74cbc22.tar.lz
gsoc2013-evolution-d72da37be9a545ddcb8aba164a6defa6e74cbc22.tar.xz
gsoc2013-evolution-d72da37be9a545ddcb8aba164a6defa6e74cbc22.tar.zst
gsoc2013-evolution-d72da37be9a545ddcb8aba164a6defa6e74cbc22.zip
remove the edit function.
2005-03-16 Li Yuan <li.yuan@sun.com> * gui/calendar-view.c: (calendar_view_class_init): remove the edit function. Fixes # 40762 svn path=/trunk/; revision=29094
Diffstat (limited to 'calendar/gui/calendar-view.c')
-rw-r--r--calendar/gui/calendar-view.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/calendar/gui/calendar-view.c b/calendar/gui/calendar-view.c
index bf199c49a0..e3e39ea555 100644
--- a/calendar/gui/calendar-view.c
+++ b/calendar/gui/calendar-view.c
@@ -39,7 +39,6 @@ struct _CalendarViewPrivate {
static void calendar_view_finalize (GObject *object);
-static void calendar_view_edit (GalView *view, GtkWindow *parent_window);
static void calendar_view_load (GalView *view, const char *filename);
static void calendar_view_save (GalView *view, const char *filename);
static const char *calendar_view_get_title (GalView *view);
@@ -59,7 +58,7 @@ calendar_view_class_init (CalendarViewClass *class)
gal_view_class = (GalViewClass *) class;
object_class = (GObjectClass *) class;
- gal_view_class->edit = calendar_view_edit;
+ gal_view_class->edit = NULL;
gal_view_class->load = calendar_view_load;
gal_view_class->save = calendar_view_save;
gal_view_class->get_title = calendar_view_get_title;
@@ -109,13 +108,6 @@ calendar_view_finalize (GObject *object)
-/* edit method of the calendar view */
-static void
-calendar_view_edit (GalView *view, GtkWindow *parent_window)
-{
- /* nothing */
-}
-
/* load method of the calendar view */
static void
calendar_view_load (GalView *view, const char *filename)