summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorDavid E. Narváez <david.narvaez@computer.org>2012-01-21 13:27:09 -0500
committerDavid E. Narváez <david.narvaez@computer.org>2012-01-21 13:27:09 -0500
commit200f9d378593071c7b071e2d62b20620dc9e75e4 (patch)
tree731402d5a18c0c61775aef0ca7548ab937ba92ab /src/main.cpp
parentMerge branch 'master' of git.kde.org:rekonq (diff)
downloadrekonq-200f9d378593071c7b071e2d62b20620dc9e75e4.tar.xz
Don't add a tab at window creation - they should all be restored from the saved properties
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index d9c9968f..bf8a0b42 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -215,7 +215,7 @@ extern "C" KDE_EXPORT int kdemain(int argc, char **argv)
if (app.isSessionRestored())
for (int i = 1; MainWindow::canBeRestored(i); i++)
- app.newMainWindow()->restore(i);
+ app.newMainWindow(false)->restore(i);
return app.exec();
}