summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-04-03 01:45:09 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-04-03 01:45:09 +0200
commiteeff2aa63a3006167542071bd19dd44ffbed8ba2 (patch)
tree54491ed81dbf7a33cd618bf2c28d97420dc3b356 /src/main.cpp
parentOpen Location Icon (diff)
downloadrekonq-eeff2aa63a3006167542071bd19dd44ffbed8ba2.tar.xz
Added Comments in main.cpp
Fixed loading external sites on new tabs. This costs us a forced initial resizing.. that could be payed (perhaps..)!
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index b7cfbb3b..630c38d7 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -51,11 +51,19 @@ int main(int argc, char **argv)
"adjam7@gmail.com"
);
+ // Initialize command line args
KCmdLineArgs::init(argc, argv, &about);
+ // Define the command line options using KCmdLineOptions
KCmdLineOptions options;
- options.add("+URL" , ki18n("Location to open"));
+
+ // adding URL option
+ options.add("+[URL]" , ki18n("Location to open"));
+
+ // Register the supported options
KCmdLineArgs::addCmdLineOptions(options);
+
+ // Add options from Application class
Application::addCmdLineOptions();
if (!Application::start())
@@ -63,6 +71,7 @@ int main(int argc, char **argv)
kWarning() << "rekonq is already running!";
return 0;
}
+
Application app;
return app.exec();
}