aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2004-04-22 11:51:14 +0800
committerJP Rosevear <jpr@src.gnome.org>2004-04-22 11:51:14 +0800
commit3a33b10b205b720d777111ace622e77ef63901b3 (patch)
tree1adfb73c07adc89ec34b25b639ded30ac23950bd /calendar/gui
parent9e08fd4d208933cea4e98bba0f155be1583ddfdc (diff)
downloadgsoc2013-evolution-3a33b10b205b720d777111ace622e77ef63901b3.tar
gsoc2013-evolution-3a33b10b205b720d777111ace622e77ef63901b3.tar.gz
gsoc2013-evolution-3a33b10b205b720d777111ace622e77ef63901b3.tar.bz2
gsoc2013-evolution-3a33b10b205b720d777111ace622e77ef63901b3.tar.lz
gsoc2013-evolution-3a33b10b205b720d777111ace622e77ef63901b3.tar.xz
gsoc2013-evolution-3a33b10b205b720d777111ace622e77ef63901b3.tar.zst
gsoc2013-evolution-3a33b10b205b720d777111ace622e77ef63901b3.zip
make sure we don't deref a NULL pointer
2004-04-21 JP Rosevear <jpr@ximian.com> * gui/calendar-component.c (create_new_event): make sure we don't deref a NULL pointer svn path=/trunk/; revision=25573
Diffstat (limited to 'calendar/gui')
-rw-r--r--calendar/gui/calendar-component.c2
-rw-r--r--calendar/gui/e-calendar-table.c10
2 files changed, 1 insertions, 11 deletions
diff --git a/calendar/gui/calendar-component.c b/calendar/gui/calendar-component.c
index 7e04ac4a95..e7b4830b94 100644
--- a/calendar/gui/calendar-component.c
+++ b/calendar/gui/calendar-component.c
@@ -839,7 +839,7 @@ create_new_event (CalendarComponent *calendar_component, CalendarComponentView *
return TRUE;
}
- if (component_view->calendar && (view = E_CALENDAR_VIEW (gnome_calendar_get_current_view_widget (component_view->calendar)))) {
+ if (component_view && (view = E_CALENDAR_VIEW (gnome_calendar_get_current_view_widget (component_view->calendar)))) {
GnomeCalendarViewType view_type;
/* Force all for these view types because thats what's selected and it mimics a double click */
diff --git a/calendar/gui/e-calendar-table.c b/calendar/gui/e-calendar-table.c
index ac79a1b262..d224b21d12 100644
--- a/calendar/gui/e-calendar-table.c
+++ b/calendar/gui/e-calendar-table.c
@@ -131,16 +131,6 @@ e_calendar_table_class_init (ECalendarTableClass *class)
/* Method override */
object_class->destroy = e_calendar_table_destroy;
-#if 0
- widget_class->realize = e_calendar_table_realize;
- widget_class->unrealize = e_calendar_table_unrealize;
- widget_class->style_set = e_calendar_table_style_set;
- widget_class->size_allocate = e_calendar_table_size_allocate;
- widget_class->focus_in_event = e_calendar_table_focus_in;
- widget_class->focus_out_event = e_calendar_table_focus_out;
- widget_class->key_press_event = e_calendar_table_key_press;
-#endif
-
/* clipboard atom */
if (!clipboard_atom)
clipboard_atom = gdk_atom_intern ("CLIPBOARD", FALSE);