diff options
author | Michele Calgaro <[email protected]> | 2024-01-05 10:36:32 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-05 11:01:33 +0900 |
commit | 9b171f8e1773c29be3ceab2c5ae8b760d78a1b54 (patch) | |
tree | 81bcba2aee9db4c8728038a7c3adb27294bbd3b9 /src/autodimm.cpp | |
parent | 58649ad84871bc59602cb310d8852db42c6f0c20 (diff) | |
download | tdepowersave-9b171f8e1773c29be3ceab2c5ae8b760d78a1b54.tar.gz tdepowersave-9b171f8e1773c29be3ceab2c5ae8b760d78a1b54.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/autodimm.cpp')
-rw-r--r-- | src/autodimm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/autodimm.cpp b/src/autodimm.cpp index 6ecea42..5eb6f24 100644 --- a/src/autodimm.cpp +++ b/src/autodimm.cpp @@ -37,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); } @@ -65,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); |