diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2012-08-09 15:55:25 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2012-12-10 02:48:05 +0100 |
commit | ffaf65808e3dc68ebaa3cf3ce726585624daf2f5 (patch) | |
tree | c2e8caea98f2f398f4decbc35c9e5acee3f6d224 | |
parent | KHelpMenu (diff) | |
download | rekonq-ffaf65808e3dc68ebaa3cf3ce726585624daf2f5.tar.xz |
main options
-rw-r--r-- | src/main.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 0fceffc0..3a37f067 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -63,7 +63,10 @@ extern "C" KDE_EXPORT int kdemain(int argc, char **argv) // Define the command line options using KCmdLineOptions KCmdLineOptions options; - // adding URL option + // adding options + options.add("incognito" , ki18n("Open in incognito mode")); + options.add("webapp=URL" , ki18n("Open URL as web app (in a simple window, as separate process)")); + options.add("window" , ki18n("Open a standalone window (i.e. WITHOUT the tabbar)")); options.add("+[URL]" , ki18n("Location to open")); // Register the supported options |