summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-08-08 22:59:07 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-08-08 22:59:07 +0200
commit23609988f8deee3b5fc87ad08dc58cb0c6608a2f (patch)
tree04ac95459a533f7fb3bfccc58247686f0646ec77 /src
parentRekonqAccessManager (rekonq 0.2 version) (diff)
downloadrekonq-23609988f8deee3b5fc87ad08dc58cb0c6608a2f.tar.xz
Compiler warning fixes
Diffstat (limited to 'src')
-rw-r--r--src/autosaver.cpp2
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.";
+ }
}