diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2012-07-23 17:56:30 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2012-12-10 02:48:04 +0100 |
commit | 36b5ff88b15d8793c64ad1a361ea0c28f9cbe169 (patch) | |
tree | 55dad28e2578e9ef6a3bbde5d85f7b2ecc84ba57 /src/tabmain.cpp | |
parent | TabWindow, first import :) (diff) | |
download | rekonq-36b5ff88b15d8793c64ad1a361ea0c28f9cbe169.tar.xz |
Coding style
Diffstat (limited to 'src/tabmain.cpp')
-rw-r--r-- | src/tabmain.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/tabmain.cpp b/src/tabmain.cpp index 7eb229dd..e64be12b 100644 --- a/src/tabmain.cpp +++ b/src/tabmain.cpp @@ -34,19 +34,19 @@ static const char description[] = I18N_NOOP("A lightweight Web Browser for KDE based on WebKit"); - + extern "C" KDE_EXPORT int kdemain(int argc, char **argv) { KAboutData about("rekonq", - 0, - ki18n("rekonq"), - REKONQ_VERSION, - ki18n(description), - KAboutData::License_GPL_V3, - ki18n("(C) 2008-2012 Andrea Diamantini"), - KLocalizedString(), - "http://rekonq.kde.org" - ); + 0, + ki18n("rekonq"), + REKONQ_VERSION, + ki18n(description), + KAboutData::License_GPL_V3, + ki18n("(C) 2008-2012 Andrea Diamantini"), + KLocalizedString(), + "http://rekonq.kde.org" + ); // Initialize command line args KCmdLineArgs::init(argc, argv, &about); @@ -63,9 +63,9 @@ extern "C" KDE_EXPORT int kdemain(int argc, char **argv) KApplication app; QWebSettings::setIconDatabasePath("/tmp/iconcache"); - + TabWindow *w = new TabWindow; - + // no session.. just start up normally KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); if (args->count() == 0) |