diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-12-02 12:54:08 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-12-02 12:54:08 +0900 |
commit | fda522b2dc3757e35988b448002d1a9eb19d4128 (patch) | |
tree | 7dd85df4209aabcaa9f1df34b00cea93afcccad3 | |
parent | 9f50be1eeb5d5acc694c2ed1220405d9a8d6d69b (diff) | |
download | tdepowersave-master.tar.gz tdepowersave-master.zip |
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | src/inactivity.cpp | 2 | ||||
-rw-r--r-- | src/inactivity.h | 2 | ||||
-rw-r--r-- | src/screen.cpp | 4 | ||||
-rw-r--r-- | src/screen.h | 2 | ||||
-rw-r--r-- | src/tdepowersave.h | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/src/inactivity.cpp b/src/inactivity.cpp index ed35869..6ce04d8 100644 --- a/src/inactivity.cpp +++ b/src/inactivity.cpp @@ -377,7 +377,7 @@ void inactivity::getPIDs(TDEProcess */*proc*/, char *buffer, int /*length*/) { /*! * \b Slot which called if the call of pidof is exited - * \param proc the KProcess which called this slot + * \param proc the TDEProcess which called this slot */ void inactivity::getPIDsExited(TDEProcess *proc){ kdDebugFuncIn(trace); diff --git a/src/inactivity.h b/src/inactivity.h index e2f1594..0ecd740 100644 --- a/src/inactivity.h +++ b/src/inactivity.h @@ -21,7 +21,7 @@ #define _INACTIVITY_H_ // KDE Header -#include <kprocess.h> +#include <tdeprocess.h> // TQt Header #include <tqregexp.h> diff --git a/src/screen.cpp b/src/screen.cpp index da6f8dc..f2c05f4 100644 --- a/src/screen.cpp +++ b/src/screen.cpp @@ -43,7 +43,7 @@ extern "C" { } // KDE Headers -#include <kprocess.h> +#include <tdeprocess.h> /*! The default constructor of the class screen */ screen::screen() { @@ -334,7 +334,7 @@ bool screen::checkScreenSaverActive() /*! * \b Slot which called if the call of gnomescreensaver-command exited - * \param gnomecheckcommand the KProcess which called this slot + * \param gnomecheckcommand the TDEProcess which called this slot */ void screen::getGSExited (TDEProcess *gnomecheckcommand) { kdDebugFuncIn(trace); diff --git a/src/screen.h b/src/screen.h index f64b610..9bd23b0 100644 --- a/src/screen.h +++ b/src/screen.h @@ -22,7 +22,7 @@ // KDE Header #include <dcopref.h> -#include <kprocess.h> +#include <tdeprocess.h> #include <tdelocale.h> // TQt Header diff --git a/src/tdepowersave.h b/src/tdepowersave.h index 4b7c0c2..67fc6f7 100644 --- a/src/tdepowersave.h +++ b/src/tdepowersave.h @@ -23,7 +23,7 @@ #define _TDEPOWERSAVE_H_ // KDE - Header -#include <kprocess.h> +#include <tdeprocess.h> #include <ksystemtray.h> #include <dcopobject.h> #include <tdehardwaredevices.h> |