aboutsummaryrefslogtreecommitdiffstats
path: root/shell/Evolution-Wizard.idl
diff options
context:
space:
mode:
authornobody <nobody@localhost>2002-12-06 03:58:38 +0800
committernobody <nobody@localhost>2002-12-06 03:58:38 +0800
commit5e87676c987f884d67fc921acbf8a95bc34851f1 (patch)
treedbf36038cda1070ffb9d92e023654b2bdf1451b4 /shell/Evolution-Wizard.idl
parentcf5e09fda7bba7532d7be4b9949f7737a4a418cd (diff)
downloadgsoc2013-evolution-GNOME_UTILS_2_1_4.tar
gsoc2013-evolution-GNOME_UTILS_2_1_4.tar.gz
gsoc2013-evolution-GNOME_UTILS_2_1_4.tar.bz2
gsoc2013-evolution-GNOME_UTILS_2_1_4.tar.lz
gsoc2013-evolution-GNOME_UTILS_2_1_4.tar.xz
gsoc2013-evolution-GNOME_UTILS_2_1_4.tar.zst
gsoc2013-evolution-GNOME_UTILS_2_1_4.zip
This commit was manufactured by cvs2svn to create tagGNOME_UTILS_2_1_4
'GNOME_UTILS_2_1_4'. svn path=/tags/GNOME_UTILS_2_1_4/; revision=19026
Diffstat (limited to 'shell/Evolution-Wizard.idl')
-rw-r--r--shell/Evolution-Wizard.idl37
1 files changed, 0 insertions, 37 deletions
diff --git a/shell/Evolution-Wizard.idl b/shell/Evolution-Wizard.idl
deleted file mode 100644
index 222830d737..0000000000
--- a/shell/Evolution-Wizard.idl
+++ /dev/null
@@ -1,37 +0,0 @@
-/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
-/*
- * Interface for a wizard done through Bonobo.
- *
- * Authors:
- * Iain Holmes <iain@ximian.com>
- *
- * Copyright (C) 2000, 2001 Ximian, Inc.
- */
-
-#include <Bonobo.idl>
-
-module GNOME {
-module Evolution {
-
- interface Wizard : Bonobo::Unknown {
-
- readonly attribute long pageCount;
- enum Action {
- NEXT,
- PREPARE,
- BACK,
- FINISH,
- CANCEL,
- HELP
- };
-
- exception NoPage {};
-
- Bonobo::Control getControl (in long pagenumber)
- raises (NoPage);
-
- void notifyAction (in long pagenumber, in Action action)
- raises (NoPage);
- };
-};
-};