aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gncal-full-day.c
diff options
context:
space:
mode:
authorArturo Espinosa <unammx@src.gnome.org>1998-04-17 13:08:55 +0800
committerArturo Espinosa <unammx@src.gnome.org>1998-04-17 13:08:55 +0800
commitad0347d16bfd10f5f6b0783d7030cac420c4362a (patch)
tree4b0a09d1b133334ce8fee945e8442417ed1268b5 /calendar/gncal-full-day.c
parent541c3a7a73e084b5ebd82aae7c3fc1f3ba4f0b72 (diff)
downloadgsoc2013-evolution-ad0347d16bfd10f5f6b0783d7030cac420c4362a.tar
gsoc2013-evolution-ad0347d16bfd10f5f6b0783d7030cac420c4362a.tar.gz
gsoc2013-evolution-ad0347d16bfd10f5f6b0783d7030cac420c4362a.tar.bz2
gsoc2013-evolution-ad0347d16bfd10f5f6b0783d7030cac420c4362a.tar.lz
gsoc2013-evolution-ad0347d16bfd10f5f6b0783d7030cac420c4362a.tar.xz
gsoc2013-evolution-ad0347d16bfd10f5f6b0783d7030cac420c4362a.tar.zst
gsoc2013-evolution-ad0347d16bfd10f5f6b0783d7030cac420c4362a.zip
Remove deadly excessive abuse of encapsulation -mig
svn path=/trunk/; revision=147
Diffstat (limited to 'calendar/gncal-full-day.c')
-rw-r--r--calendar/gncal-full-day.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/calendar/gncal-full-day.c b/calendar/gncal-full-day.c
index 028e3657b7..b048ba9de7 100644
--- a/calendar/gncal-full-day.c
+++ b/calendar/gncal-full-day.c
@@ -110,7 +110,7 @@ static void range_activated (GncalFullDay *fullday);
static GtkContainerClass *parent_class;
-static fullday_signals[LAST_SIGNAL] = { 0 };
+static int fullday_signals[LAST_SIGNAL] = { 0 };
static void
@@ -390,7 +390,7 @@ child_popup_menu (GncalFullDay *fullday, Child *child, guint32 event_time)
child_items[1].data = child;
child_items[3].data = fullday;
- sensitive = (ical_object_get_user_data (child->ico) == NULL);
+ sensitive = (child->ico->user_data == NULL);
child_items[0].sensitive = sensitive;
child_items[1].sensitive = sensitive;
@@ -1892,7 +1892,6 @@ void
gncal_full_day_update (GncalFullDay *fullday, iCalObject *ico, int flags)
{
GList *children;
- GList *l_events, *events;
Child *child;
g_return_if_fail (fullday != NULL);