diff options
author | David E. Narváez <david.narvaez@computer.org> | 2012-01-21 10:55:47 -0500 |
---|---|---|
committer | David E. Narváez <david.narvaez@computer.org> | 2012-01-21 10:55:47 -0500 |
commit | 5b07ae284dc0179f6d1259072c20a24dd6048ba3 (patch) | |
tree | e40337d36f7b645e32fc23ee67b142798e1a2372 | |
parent | Refactoring Code to Load Configuration Document (diff) | |
download | rekonq-5b07ae284dc0179f6d1259072c20a24dd6048ba3.tar.xz |
Renamed variable to avoid confusion - it is not a member variable
-rw-r--r-- | src/sessionmanager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sessionmanager.cpp b/src/sessionmanager.cpp index d5298ecb..74e9603c 100644 --- a/src/sessionmanager.cpp +++ b/src/sessionmanager.cpp @@ -44,9 +44,9 @@ #include <QtCore/QFile> // Only used internally -bool readSessionDocument(QDomDocument & document, const QString & m_sessionFilePath) +bool readSessionDocument(QDomDocument & document, const QString & sessionFilePath) { - QFile sessionFile(m_sessionFilePath); + QFile sessionFile(sessionFilePath); if (!sessionFile.exists()) return false; |