aboutsummaryrefslogtreecommitdiffstats
path: root/shell/Evolution-StorageSetView.idl
diff options
context:
space:
mode:
authornobody <nobody@localhost>2000-11-07 05:40:14 +0800
committernobody <nobody@localhost>2000-11-07 05:40:14 +0800
commit974c8956c2aef9235616d2610d22f02d5db7ed10 (patch)
tree786145ed8b82796d89e41d2ed37058c0097ace13 /shell/Evolution-StorageSetView.idl
parentb4c61eba8055f666fd8a2270879a6f9722faa2b3 (diff)
downloadgsoc2013-evolution-GTOP_1_0_10.tar.gz
gsoc2013-evolution-GTOP_1_0_10.tar.zst
gsoc2013-evolution-GTOP_1_0_10.zip
This commit was manufactured by cvs2svn to create tag 'GTOP_1_0_10'.GTOP_1_0_10
svn path=/tags/GTOP_1_0_10/; revision=6449
Diffstat (limited to 'shell/Evolution-StorageSetView.idl')
-rw-r--r--shell/Evolution-StorageSetView.idl31
1 files changed, 0 insertions, 31 deletions
diff --git a/shell/Evolution-StorageSetView.idl b/shell/Evolution-StorageSetView.idl
deleted file mode 100644
index 3d95b075be..0000000000
--- a/shell/Evolution-StorageSetView.idl
+++ /dev/null
@@ -1,31 +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@helixcode.com>
- *
- * Copyright (C) 2000 Helix Code, Inc.
- */
-
-#include <Bonoob.idl>
-
-module Evolution {
- interface StorageSetViewListener {
- void folder_selected (in string uri);
- void storage_selected (in string uri);
- };
-
- /* FIXME: Maybe we should have a generic Bonobo::Listener interface. */
- interface StorageSetView : Bonobo::Unknown {
- exception AlreadyListening {};
- exception NotFound {};
-
- attribute boolean show_folders;
-
- void add_listener (in StorageSetViewListener listener)
- raises (AlreadyListening);
- void remove_listener (in StorageSetViewListener listener)
- raises (NotFound);
- };
-};