diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-08-08 22:59:07 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-08-08 22:59:07 +0200 |
commit | 23609988f8deee3b5fc87ad08dc58cb0c6608a2f (patch) | |
tree | 04ac95459a533f7fb3bfccc58247686f0646ec77 | |
parent | RekonqAccessManager (rekonq 0.2 version) (diff) | |
download | rekonq-23609988f8deee3b5fc87ad08dc58cb0c6608a2f.tar.xz |
Compiler warning fixes
-rw-r--r-- | src/autosaver.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/autosaver.cpp b/src/autosaver.cpp index 602be8ac..236922b5 100644 --- a/src/autosaver.cpp +++ b/src/autosaver.cpp @@ -51,7 +51,9 @@ AutoSaver::AutoSaver(QObject *parent) : QObject(parent) AutoSaver::~AutoSaver() { if (m_timer.isActive()) + { kWarning() << "AutoSaver: still active when destroyed, changes not saved."; + } } |