aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component/select-names/Evolution-Addressbook-SelectNames.idl
diff options
context:
space:
mode:
authornobody <nobody@localhost>2001-07-13 04:44:02 +0800
committernobody <nobody@localhost>2001-07-13 04:44:02 +0800
commitf0262739e1c7bd152ad5eaad36a99513706177c7 (patch)
treeb086de6767c3880e0549a692f616c7b02a751123 /addressbook/gui/component/select-names/Evolution-Addressbook-SelectNames.idl
parent4da3e76c2cb4e89850166ae5fa0bf2e4db837733 (diff)
downloadgsoc2013-evolution-f0262739e1c7bd152ad5eaad36a99513706177c7.tar
gsoc2013-evolution-f0262739e1c7bd152ad5eaad36a99513706177c7.tar.gz
gsoc2013-evolution-f0262739e1c7bd152ad5eaad36a99513706177c7.tar.bz2
gsoc2013-evolution-f0262739e1c7bd152ad5eaad36a99513706177c7.tar.lz
gsoc2013-evolution-f0262739e1c7bd152ad5eaad36a99513706177c7.tar.xz
gsoc2013-evolution-f0262739e1c7bd152ad5eaad36a99513706177c7.tar.zst
gsoc2013-evolution-f0262739e1c7bd152ad5eaad36a99513706177c7.zip
This commit was manufactured by cvs2svn to create tag 'GAL_0_9'.GAL_0_9
svn path=/tags/GAL_0_9/; revision=11062
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 35586b611e..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@ximian.com>
- *
- * Copyright (C) 2000 Ximian, 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);
- };
-
-};
-};
-};