diff options
author | Dietmar Maurer <dietmar@src.gnome.org> | 2001-01-15 16:32:46 +0800 |
---|---|---|
committer | Dietmar Maurer <dietmar@src.gnome.org> | 2001-01-15 16:32:46 +0800 |
commit | 41a9a74be42581c6d5e43057d56e88e867c22977 (patch) | |
tree | 64572ed5ba9dc4fde52dfef95cb5d6e2cf901222 /calendar/gui/tasks-control.c | |
parent | b2d82f7fb8ea51bd8d67d2482cc606c06e5a560b (diff) | |
download | gsoc2013-evolution-41a9a74be42581c6d5e43057d56e88e867c22977.tar gsoc2013-evolution-41a9a74be42581c6d5e43057d56e88e867c22977.tar.gz gsoc2013-evolution-41a9a74be42581c6d5e43057d56e88e867c22977.tar.bz2 gsoc2013-evolution-41a9a74be42581c6d5e43057d56e88e867c22977.tar.lz gsoc2013-evolution-41a9a74be42581c6d5e43057d56e88e867c22977.tar.xz gsoc2013-evolution-41a9a74be42581c6d5e43057d56e88e867c22977.tar.zst gsoc2013-evolution-41a9a74be42581c6d5e43057d56e88e867c22977.zip |
changed the signature of the property_bag get/set functions
svn path=/trunk/; revision=7499
Diffstat (limited to 'calendar/gui/tasks-control.c')
-rw-r--r-- | calendar/gui/tasks-control.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/calendar/gui/tasks-control.c b/calendar/gui/tasks-control.c index 7721b0d08a..e45f72623b 100644 --- a/calendar/gui/tasks-control.c +++ b/calendar/gui/tasks-control.c @@ -39,10 +39,12 @@ static void tasks_control_properties_init (BonoboControl *control, static void tasks_control_get_property (BonoboPropertyBag *bag, BonoboArg *arg, guint arg_id, + CORBA_Environment *ev, gpointer user_data); static void tasks_control_set_property (BonoboPropertyBag *bag, const BonoboArg *arg, guint arg_id, + CORBA_Environment *ev, gpointer user_data); static void tasks_control_activate_cb (BonoboControl *control, gboolean activate, @@ -112,6 +114,7 @@ static void tasks_control_get_property (BonoboPropertyBag *bag, BonoboArg *arg, guint arg_id, + CORBA_Environment *ev, gpointer user_data) { /*GnomeCalendar *gcal = user_data;*/ @@ -137,6 +140,7 @@ static void tasks_control_set_property (BonoboPropertyBag *bag, const BonoboArg *arg, guint arg_id, + CORBA_Environment *ev, gpointer user_data) { ETasks *tasks = user_data; |