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/e-itip-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/e-itip-control.c')
-rw-r--r-- | calendar/gui/e-itip-control.c | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index 4292878c9b..e46d4a78ee 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -932,8 +932,11 @@ pstream_get_content_types (BonoboPersistStream *ps, void *closure, } static void -get_prop ( BonoboPropertyBag *bag, BonoboArg *arg, - guint arg_id, gpointer user_data ) +get_prop ( BonoboPropertyBag *bag, + BonoboArg *arg, + guint arg_id, + CORBA_Environment *ev, + gpointer user_data) { EItipControlPrivate *priv = user_data; @@ -946,8 +949,11 @@ get_prop ( BonoboPropertyBag *bag, BonoboArg *arg, } static void -set_prop ( BonoboPropertyBag *bag, const BonoboArg *arg, - guint arg_id, gpointer user_data ) +set_prop ( BonoboPropertyBag *bag, + const BonoboArg *arg, + guint arg_id, + CORBA_Environment *ev, + gpointer user_data) { EItipControlPrivate *priv = user_data; |