diff options
Diffstat (limited to 'src/ephy-main.c')
-rw-r--r-- | src/ephy-main.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ephy-main.c b/src/ephy-main.c index 8408354e4..e14c4abf3 100644 --- a/src/ephy-main.c +++ b/src/ephy-main.c @@ -55,6 +55,7 @@ static gchar *bookmark_url = NULL; /* the temp bookmark to add static gboolean close_option = FALSE; /* --close */ static gboolean quit_option = FALSE; /* --quit */ static gboolean ephy_server_mode = FALSE; +static gboolean open_as_bookmarks_editor = FALSE; /* --bookmarks-editor */ static gboolean open_as_nautilus_view = FALSE; static BonoboObject *automation_object; @@ -105,6 +106,9 @@ static struct poptOption popt_options[] = { "nautilus-view", 'v', POPT_ARG_NONE, &open_as_nautilus_view, 0, N_("Used internally by the nautilus view"), NULL }, + { "bookmarks-editor", 'b', POPT_ARG_NONE, &open_as_bookmarks_editor, 0, + N_("Launch the bookmarks editor"), + NULL }, /* terminator, must be last */ { NULL, 0, 0, NULL, 0, NULL, NULL } @@ -202,6 +206,12 @@ ephy_main_start (gpointer data) { g_object_ref (G_OBJECT(ephy_shell)); } + /* Launch the bookmarks editor */ + else if (open_as_bookmarks_editor) + { + GNOME_EphyAutomation_openBookmarksEditor + (gaserver, &corba_env); + } /* load the session if requested */ else if (session_filename) { |