diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-08-11 11:46:37 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-08-11 11:46:37 +0800 |
commit | 3834c823592912bcaf881cb94e949612ce29baf2 (patch) | |
tree | 9948d475db00f3e03149810bdd1694ed87fccc2b /widgets/misc/e-calendar.c | |
parent | d5f9483b16cea64491eb5fe4eec815c61126849e (diff) | |
download | gsoc2013-evolution-3834c823592912bcaf881cb94e949612ce29baf2.tar.gz gsoc2013-evolution-3834c823592912bcaf881cb94e949612ce29baf2.tar.zst gsoc2013-evolution-3834c823592912bcaf881cb94e949612ce29baf2.zip |
Fixed some warnings.
2000-08-10 Christopher James Lahey <clahey@helixcode.com>
* e-calendar-item.c, e-calendar.c: Fixed some warnings.
svn path=/trunk/; revision=4723
Diffstat (limited to 'widgets/misc/e-calendar.c')
-rw-r--r-- | widgets/misc/e-calendar.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/widgets/misc/e-calendar.c b/widgets/misc/e-calendar.c index 638d50de56..ec85e3471f 100644 --- a/widgets/misc/e-calendar.c +++ b/widgets/misc/e-calendar.c @@ -56,10 +56,12 @@ static gint e_calendar_expose (GtkWidget *widget, GdkEventExpose *event); static void e_calendar_draw (GtkWidget *widget, GdkRectangle *area); +#if 0 static gint e_calendar_button_press (GtkWidget *widget, GdkEventButton *event); static gint e_calendar_button_release (GtkWidget *widget, GdkEventButton *event); +#endif static gint e_calendar_focus_in (GtkWidget *widget, GdkEventFocus *event); static gint e_calendar_focus_out (GtkWidget *widget, @@ -347,7 +349,9 @@ e_calendar_paint (ECalendar *cal, } +/* FIXME These aren't used? */ +#if 0 static gint e_calendar_button_press (GtkWidget *widget, GdkEventButton *event) @@ -370,6 +374,7 @@ e_calendar_button_release (GtkWidget *widget, return FALSE; } +#endif static gint |