aboutsummaryrefslogtreecommitdiffstats
path: root/idl
diff options
context:
space:
mode:
authorXan Lopez <xan@src.gnome.org>2003-04-09 07:13:37 +0800
committerXan Lopez <xan@src.gnome.org>2003-04-09 07:13:37 +0800
commit6869072199d751b46f6f7757aee792a9f0eca7fe (patch)
treec693ac5274c53a931337a1df812a32a2fb50336f /idl
parentb934ed62cfeb93b86c0f655eff39ff0de63ef7df (diff)
downloadgsoc2013-epiphany-6869072199d751b46f6f7757aee792a9f0eca7fe.tar
gsoc2013-epiphany-6869072199d751b46f6f7757aee792a9f0eca7fe.tar.gz
gsoc2013-epiphany-6869072199d751b46f6f7757aee792a9f0eca7fe.tar.bz2
gsoc2013-epiphany-6869072199d751b46f6f7757aee792a9f0eca7fe.tar.lz
gsoc2013-epiphany-6869072199d751b46f6f7757aee792a9f0eca7fe.tar.xz
gsoc2013-epiphany-6869072199d751b46f6f7757aee792a9f0eca7fe.tar.zst
gsoc2013-epiphany-6869072199d751b46f6f7757aee792a9f0eca7fe.zip
Allow to launch the BME alone, rework some CORBA code, add a .desktop file
Allow to launch the BME alone, rework some CORBA code, add a .desktop file for the BME. Fixes #102477.
Diffstat (limited to 'idl')
-rw-r--r--idl/EphyAutomation.idl10
1 files changed, 6 insertions, 4 deletions
diff --git a/idl/EphyAutomation.idl b/idl/EphyAutomation.idl
index 5f64b90d8..a9a286dcd 100644
--- a/idl/EphyAutomation.idl
+++ b/idl/EphyAutomation.idl
@@ -3,7 +3,7 @@
module GNOME {
interface EphyAutomation : Bonobo::Unknown {
- boolean loadurl (in string url,
+ void loadurl (in string url,
in string geometry,
in boolean fullscreen,
in boolean open_in_existing_tab,
@@ -11,7 +11,7 @@ module GNOME {
in boolean open_in_new_window,
in boolean raise);
- boolean addBookmark (in string url);
+ void addBookmark (in string url);
/**
* Closes all opened windows.
@@ -19,9 +19,11 @@ module GNOME {
* server mode is disbaled
* (and Epiphany exits)
*/
- boolean quit (in boolean disableServer);
+ void quit (in boolean disableServer);
- boolean loadSession (in string filename);
+ void loadSession (in string filename);
+
+ void openBookmarksEditor ();
};
};