aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/idl
diff options
context:
space:
mode:
authorJP Rosevear <jpr@novell.com>2004-05-18 22:14:14 +0800
committerJP Rosevear <jpr@src.gnome.org>2004-05-18 22:14:14 +0800
commit12e3ecf07f633d0e496b4e35115b194fc39feab4 (patch)
tree5663a33951b9d807206ac1691b11cb6ed18e35dc /calendar/idl
parent8f8ecd25e13165724e6e4cc71af09a383d44d727 (diff)
downloadgsoc2013-evolution-12e3ecf07f633d0e496b4e35115b194fc39feab4.tar
gsoc2013-evolution-12e3ecf07f633d0e496b4e35115b194fc39feab4.tar.gz
gsoc2013-evolution-12e3ecf07f633d0e496b4e35115b194fc39feab4.tar.bz2
gsoc2013-evolution-12e3ecf07f633d0e496b4e35115b194fc39feab4.tar.lz
gsoc2013-evolution-12e3ecf07f633d0e496b4e35115b194fc39feab4.tar.xz
gsoc2013-evolution-12e3ecf07f633d0e496b4e35115b194fc39feab4.tar.zst
gsoc2013-evolution-12e3ecf07f633d0e496b4e35115b194fc39feab4.zip
add arg
2004-05-18 JP Rosevear <jpr@novell.com> * idl/evolution-calendar.idl: add arg * gui/alarm-notify/alarm-queue.c (edit_component): send a mode type * gui/alarm-notify/alarm-notify.c: add fixme note * gui/comp-editor-factory.c (impl_editExisting): take a editor mode and twist it into a source type (impl_editNew): ditto (open_client): take a source type for creating the client (lookup_open_client): ditto svn path=/trunk/; revision=25959
Diffstat (limited to 'calendar/idl')
-rw-r--r--calendar/idl/evolution-calendar.idl5
1 files changed, 4 insertions, 1 deletions
diff --git a/calendar/idl/evolution-calendar.idl b/calendar/idl/evolution-calendar.idl
index 2ead68220b..532fa2a0e4 100644
--- a/calendar/idl/evolution-calendar.idl
+++ b/calendar/idl/evolution-calendar.idl
@@ -33,7 +33,10 @@ module Calendar {
const CompEditorMode EDITOR_MODE_TODO = 1 << 3;
/* Loads a calendar and opens an editor for the specified object */
- void editExisting (in string uri, in CalObjUID uid)
+ /* FIXME Its nasty to use CompEditorMode to pass event/todo source type
+ but it saves adding yet another corba type - only MODE_EVENT or
+ MODE_TODO should be passed here */
+ void editExisting (in string uri, in CalObjUID uid, in CompEditorMode mode)
raises (InvalidURI, BackendContactError);
/* Loads a calendar and creates a new component of the specified type */