summaryrefslogtreecommitdiffstats
path: root/src/autodimm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/autodimm.cpp')
-rw-r--r--src/autodimm.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/autodimm.cpp b/src/autodimm.cpp
index e797e61..5eb6f24 100644
--- a/src/autodimm.cpp
+++ b/src/autodimm.cpp
@@ -24,6 +24,10 @@
* \date 2007
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include "autodimm.h"
/*! The default constructor of the class autodimm */
@@ -33,7 +37,7 @@ autodimm::autodimm(screen *disp) : inactivity(disp) {
lastIdleTime = 0;
checkActivity = new TQTimer( this );
- connect( checkActivity, TQT_SIGNAL(timeout()), this, TQT_SLOT(pollActivity()));
+ connect( checkActivity, TQ_SIGNAL(timeout()), this, TQ_SLOT(pollActivity()));
kdDebugFuncOut(trace);
}
@@ -61,7 +65,7 @@ void autodimm::startCheckForActivity() {
}
/*!
- * \b TQT_SLOT to call check if the user is active again.
+ * \b Slot to call check if the user is active again.
*/
void autodimm::pollActivity() {
kdDebugFuncIn(trace);