diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-04-30 11:23:37 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-04-30 11:23:37 +0200 |
commit | c896cc340d7e6e0878b3249c5792e6d88a12cf42 (patch) | |
tree | fd0a7a61ff1d07f301f2188de5cb6fa473134897 /src/sessionmanager.cpp | |
parent | A tiny improvement in the error page, showing a fat icon.. :) (diff) | |
download | rekonq-c896cc340d7e6e0878b3249c5792e6d88a12cf42.tar.xz |
A coding style round
Diffstat (limited to 'src/sessionmanager.cpp')
-rw-r--r-- | src/sessionmanager.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/sessionmanager.cpp b/src/sessionmanager.cpp index 9e1f7baf..4612952b 100644 --- a/src/sessionmanager.cpp +++ b/src/sessionmanager.cpp @@ -46,8 +46,8 @@ SessionManager::SessionManager(QObject *parent) - : QObject(parent) - , m_safe(true) + : QObject(parent) + , m_safe(true) { m_sessionFilePath = KStandardDirs::locateLocal("appdata" , "session"); } @@ -60,7 +60,7 @@ SessionManager::~SessionManager() void SessionManager::saveSession() { - if(!m_safe) + if (!m_safe) return; m_safe = false; QFile sessionFile(m_sessionFilePath); @@ -102,7 +102,7 @@ bool SessionManager::restoreSession() do { line = in.readLine(); - if(line == QString("window")) + if (line == QString("window")) { line = in.readLine(); kDebug() << "New Window line: " << line; @@ -114,7 +114,7 @@ bool SessionManager::restoreSession() Application::instance()->loadUrl(line, Rekonq::NewCurrentTab); } } - while(!line.isEmpty()); - + while (!line.isEmpty()); + return true; } |