aboutsummaryrefslogtreecommitdiffstats
path: root/shell/Evolution-StorageSetView.idl
diff options
context:
space:
mode:
authornobody <nobody@localhost>2001-06-23 13:14:10 +0800
committernobody <nobody@localhost>2001-06-23 13:14:10 +0800
commit2bbe5d3421eefbcac7d9f3e16d3ea09e96a2bc10 (patch)
treea4eb5e010ba601de261dc3f9da4dd4b86fcc46fe /shell/Evolution-StorageSetView.idl
parent72ca61d74b9942040638b628a6f1358e02d23d42 (diff)
downloadgsoc2013-evolution-GNUMERIC_0_66.tar
gsoc2013-evolution-GNUMERIC_0_66.tar.gz
gsoc2013-evolution-GNUMERIC_0_66.tar.bz2
gsoc2013-evolution-GNUMERIC_0_66.tar.lz
gsoc2013-evolution-GNUMERIC_0_66.tar.xz
gsoc2013-evolution-GNUMERIC_0_66.tar.zst
gsoc2013-evolution-GNUMERIC_0_66.zip
This commit was manufactured by cvs2svn to create tagGNUMERIC_0_66
'GNUMERIC_0_66'. svn path=/tags/GNUMERIC_0_66/; revision=10420
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);
- };
-};
-};