aboutsummaryrefslogtreecommitdiffstats
path: root/shell/Evolution-StorageSetView.idl
diff options
context:
space:
mode:
authornobody <nobody@localhost>2001-09-17 12:32:38 +0800
committernobody <nobody@localhost>2001-09-17 12:32:38 +0800
commitb741f2e9e395de5408edea20ff3c4d4731439079 (patch)
tree6f31e70927858f2bafcfc481e337a665090bdb8e /shell/Evolution-StorageSetView.idl
parent169d9ae19a0eb165edc757eca753a757a02f60f7 (diff)
downloadgsoc2013-evolution-b741f2e9e395de5408edea20ff3c4d4731439079.tar
gsoc2013-evolution-b741f2e9e395de5408edea20ff3c4d4731439079.tar.gz
gsoc2013-evolution-b741f2e9e395de5408edea20ff3c4d4731439079.tar.bz2
gsoc2013-evolution-b741f2e9e395de5408edea20ff3c4d4731439079.tar.lz
gsoc2013-evolution-b741f2e9e395de5408edea20ff3c4d4731439079.tar.xz
gsoc2013-evolution-b741f2e9e395de5408edea20ff3c4d4731439079.tar.zst
gsoc2013-evolution-b741f2e9e395de5408edea20ff3c4d4731439079.zip
This commit was manufactured by cvs2svn to create tagGNOME_SPELL_0_3
'GNOME_SPELL_0_3'. svn path=/tags/GNOME_SPELL_0_3/; revision=12879
Diffstat (limited to 'shell/Evolution-StorageSetView.idl')
-rw-r--r--shell/Evolution-StorageSetView.idl34
1 files changed, 0 insertions, 34 deletions
diff --git a/shell/Evolution-StorageSetView.idl b/shell/Evolution-StorageSetView.idl
deleted file mode 100644
index c9222c3d62..0000000000
--- a/shell/Evolution-StorageSetView.idl
+++ /dev/null
@@ -1,34 +0,0 @@
-/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
-/*
- * Interface for the Evolution's StorageSetView control.
- *
- * Authors:
- * Ettore Perazzoli <ettore@ximian.com>
- *
- * Copyright (C) 2000, 2001 Ximian, Inc.
- */
-
-#include <Bonoob.idl>
-
-module GNOME {
-module Evolution {
- interface StorageSetViewListener {
- void notifyFolderSelected (in string uri);
- void notifyStorageSelected (in string name);
- };
-
- /* FIXME: Maybe we should have a generic Bonobo::Listener interface. */
- interface StorageSetView : Bonobo::Unknown {
- exception AlreadyListening {};
- exception NotFound {};
-
- attribute boolean showFolders;
-
- void addListener (in StorageSetViewListener listener)
- raises (AlreadyListening);
-
- void removeListener (in StorageSetViewListener listener)
- raises (NotFound);
- };
-};
-};