diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2008-12-18 02:51:24 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2008-12-18 02:51:24 +0100 |
commit | 0dc1272340d4deda7f9b07c5278fac9e04383b18 (patch) | |
tree | 041c3e575f9b45ae5d9d97a6fd3cf750b6fb87a5 /src/main.cpp | |
parent | Adjusted download directory requester (diff) | |
download | rekonq-0dc1272340d4deda7f9b07c5278fac9e04383b18.tar.xz |
Lots of improvements in save/restore state functions.
- saving toolbar lock
- removing unuseful save/restore tabWidget functions
- saving navigation toolbar settings
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index e2f74b4d..7963405d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -41,13 +41,18 @@ int main(int argc, char **argv) "adjam7@gmail.com" // bug report mail ); - aboutData.addAuthor(ki18n("Andrea Diamantini"), ki18n("rekonq author"), "adjam7@gmail.com"); + aboutData.addAuthor( + ki18n("Andrea Diamantini"), + ki18n("rekonq author"), + "adjam7@gmail.com" + ); + aboutData.setProgramIconName("applications-internet"); KCmdLineArgs::init( argc, argv, &aboutData ); KCmdLineOptions options; - options.add("+URL", ki18n("Location to open")); + options.add( "+URL" , ki18n("Location to open") ); KCmdLineArgs::addCmdLineOptions( options ); KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); |