aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component/select-names/Evolution-Addressbook-SelectNames.idl
diff options
context:
space:
mode:
authornobody <nobody@localhost>2001-03-02 09:33:29 +0800
committernobody <nobody@localhost>2001-03-02 09:33:29 +0800
commit0f0cc6c488ee2ba9a9c4f2d9bfc41996dfedf9fd (patch)
treecda39502324bf50b451e5c7f58e5dee7c7476bad /addressbook/gui/component/select-names/Evolution-Addressbook-SelectNames.idl
parent50ef074887b43f43dad3edb120d9abf30092c681 (diff)
downloadgsoc2013-evolution-0f0cc6c488ee2ba9a9c4f2d9bfc41996dfedf9fd.tar
gsoc2013-evolution-0f0cc6c488ee2ba9a9c4f2d9bfc41996dfedf9fd.tar.gz
gsoc2013-evolution-0f0cc6c488ee2ba9a9c4f2d9bfc41996dfedf9fd.tar.bz2
gsoc2013-evolution-0f0cc6c488ee2ba9a9c4f2d9bfc41996dfedf9fd.tar.lz
gsoc2013-evolution-0f0cc6c488ee2ba9a9c4f2d9bfc41996dfedf9fd.tar.xz
gsoc2013-evolution-0f0cc6c488ee2ba9a9c4f2d9bfc41996dfedf9fd.tar.zst
gsoc2013-evolution-0f0cc6c488ee2ba9a9c4f2d9bfc41996dfedf9fd.zip
This commit was manufactured by cvs2svn to create tagGNOME-VFS_1_0_ANCHOR
'GNOME-VFS_1_0_ANCHOR'. svn path=/tags/GNOME-VFS_1_0_ANCHOR/; revision=8487
Diffstat (limited to 'addressbook/gui/component/select-names/Evolution-Addressbook-SelectNames.idl')
-rw-r--r--addressbook/gui/component/select-names/Evolution-Addressbook-SelectNames.idl39
1 files changed, 0 insertions, 39 deletions
diff --git a/addressbook/gui/component/select-names/Evolution-Addressbook-SelectNames.idl b/addressbook/gui/component/select-names/Evolution-Addressbook-SelectNames.idl
deleted file mode 100644
index c38d714cf4..0000000000
--- a/addressbook/gui/component/select-names/Evolution-Addressbook-SelectNames.idl
+++ /dev/null
@@ -1,39 +0,0 @@
-/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
-/*
- * CORBA interface for the SelectNames dialog.
- *
- * Authors:
- * Ettore Perazzoli <ettore@helixcode.com>
- *
- * Copyright (C) 2000 Helix Code, Inc.
- */
-
-#include <Bonobo.idl>
-
-module GNOME {
-module Evolution {
-module Addressbook {
-
- interface SelectNames : Bonobo::Unknown {
- struct Section {
- string id;
- string title;
- };
-
- typedef sequence<Section> SectionList;
-
- exception DuplicateID {};
- exception SectionNotFound {};
-
- void addSection (in string id, in string title)
- raises (DuplicateID);
-
- Bonobo::Control getEntryBySection (in string section_id)
- raises (SectionNotFound);
-
- void activateDialog (in string section_id);
- };
-
-};
-};
-};