diff options
author | nobody <nobody@localhost> | 2001-07-26 10:23:33 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2001-07-26 10:23:33 +0800 |
commit | bd56ec56c662ba26f29690524fbe8d313be6118f (patch) | |
tree | 5c64260398fbee96c8074faef3fb06bf6ce67706 /addressbook/gui/component/select-names/Evolution-Addressbook-SelectNames.idl | |
parent | 9cf5ba1797448f8a2eb28add9f6b07c6adb31495 (diff) | |
download | gsoc2013-evolution-GAL_0_10.tar gsoc2013-evolution-GAL_0_10.tar.gz gsoc2013-evolution-GAL_0_10.tar.bz2 gsoc2013-evolution-GAL_0_10.tar.lz gsoc2013-evolution-GAL_0_10.tar.xz gsoc2013-evolution-GAL_0_10.tar.zst gsoc2013-evolution-GAL_0_10.zip |
This commit was manufactured by cvs2svn to create tag 'GAL_0_10'.GAL_0_10
svn path=/tags/GAL_0_10/; revision=11421
Diffstat (limited to 'addressbook/gui/component/select-names/Evolution-Addressbook-SelectNames.idl')
-rw-r--r-- | addressbook/gui/component/select-names/Evolution-Addressbook-SelectNames.idl | 42 |
1 files changed, 0 insertions, 42 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 244799deb2..0000000000 --- a/addressbook/gui/component/select-names/Evolution-Addressbook-SelectNames.idl +++ /dev/null @@ -1,42 +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); - void addSectionWithLimit (in string id, in string title, in short limit) - raises (DuplicateID); - - Bonobo::Control getEntryBySection (in string section_id) - raises (SectionNotFound); - - void activateDialog (in string section_id); - }; - - -}; -}; -}; |