diff options
author | JP Rosevear <jpr@ximian.com> | 2004-01-10 02:34:36 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-01-10 02:34:36 +0800 |
commit | face7b1e90bde0643042d643dc633c9fe0de21cf (patch) | |
tree | 60ae4bc76916d9a171e6e9f127b65fc69a84131c /calendar | |
parent | b2fdc68fd71c0a1fb81c8bb1f7c52896ec5167d7 (diff) | |
download | gsoc2013-evolution-face7b1e90bde0643042d643dc633c9fe0de21cf.tar.gz gsoc2013-evolution-face7b1e90bde0643042d643dc633c9fe0de21cf.tar.zst gsoc2013-evolution-face7b1e90bde0643042d643dc633c9fe0de21cf.zip |
return the corba values
2004-01-09 JP Rosevear <jpr@ximian.com>
* gui/tasks-component.c (impl_upgradeFromVersion): return the
corba values
* gui/calendar-component.c (impl_upgradeFromVersion): ditto
svn path=/trunk/; revision=24134
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/calendar-component.c | 2 | ||||
-rw-r--r-- | calendar/gui/tasks-component.c | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 1e44420f73..1387594e13 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,10 @@ +2004-01-09 JP Rosevear <jpr@ximian.com> + + * gui/tasks-component.c (impl_upgradeFromVersion): return the + corba values + + * gui/calendar-component.c (impl_upgradeFromVersion): ditto + 2004-01-09 Rodrigo Moya <rodrigo@ximian.com> * gui/calendar-component.c (impl_upgradeFromVersion): only migrate diff --git a/calendar/gui/calendar-component.c b/calendar/gui/calendar-component.c index 8a6e3b116e..f3a077459f 100644 --- a/calendar/gui/calendar-component.c +++ b/calendar/gui/calendar-component.c @@ -562,7 +562,7 @@ impl_upgradeFromVersion (PortableServer_Servant servant, g_free (base_uri); - return TRUE; + return CORBA_TRUE; } static void diff --git a/calendar/gui/tasks-component.c b/calendar/gui/tasks-component.c index bdddc54ade..fcd57d7fe2 100644 --- a/calendar/gui/tasks-component.c +++ b/calendar/gui/tasks-component.c @@ -538,7 +538,7 @@ impl_upgradeFromVersion (PortableServer_Servant servant, g_free (base_uri); - return TRUE; + return CORBA_TRUE; } static void |