summaryrefslogtreecommitdiff
path: root/idl
diff options
context:
space:
mode:
authorElliot Lee <sopwith@src.gnome.org>2000-02-22 21:16:19 +0000
committerElliot Lee <sopwith@src.gnome.org>2000-02-22 21:16:19 +0000
commit5f86e36eea3c547e339526fe1648b12141a3bd90 (patch)
tree57680ddcbee69d06de31344ee2a466bc66b51032 /idl
parent655a582d2eda4683aefb0d3b1c47b72cc5356e2f (diff)
downloadnautilus-5f86e36eea3c547e339526fe1648b12141a3bd90.tar.gz
Set order of items packed into box. include stdio.h to avoid warnings.
* src/nautilus-index-title.c: Set order of items packed into box. * src/file-manager/fm-directory-view-icons.c: include stdio.h to avoid warnings.
Diffstat (limited to 'idl')
-rw-r--r--idl/nautilus.idl9
1 files changed, 9 insertions, 0 deletions
diff --git a/idl/nautilus.idl b/idl/nautilus.idl
index d58904417..f3630d34c 100644
--- a/idl/nautilus.idl
+++ b/idl/nautilus.idl
@@ -72,6 +72,15 @@ module Nautilus {
};
interface ViewWindow : ::Bonobo::Unknown {
+ readonly attribute string current_uri;
+ void open_uri(in string uri);
+ void close();
};
+ typedef sequence<Object> ObjectList;
+
+ interface Application : ::GNOME::GenericFactory {
+ readonly attribute ObjectList windows;
+ ViewWindow new_window();
+ };
};