diff options
Diffstat (limited to 'src/cpufreqd/cpufreqdconnection.cpp')
-rw-r--r-- | src/cpufreqd/cpufreqdconnection.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cpufreqd/cpufreqdconnection.cpp b/src/cpufreqd/cpufreqdconnection.cpp index 4c9ee03..7820029 100644 --- a/src/cpufreqd/cpufreqdconnection.cpp +++ b/src/cpufreqd/cpufreqdconnection.cpp @@ -20,7 +20,7 @@ #include "cpufreqdconnection.h" -#include <qdir.h> +#include <tqdir.h> #include <fcntl.h> #include <stdlib.h> @@ -36,7 +36,7 @@ * Hrvoje Zeba <[email protected]> * * Format: - * it is an uint32_t used as bitmask + * it is an uint32_t used as bittqmask * * 31-16 15-0 * <command> <arguments> @@ -110,8 +110,8 @@ bool CPUFreqdConnection::available() const { } bool CPUFreqdConnection::lookup() { - QString candidate; - QDir tmp("/tmp", "cpufreqd-*", QDir::Time, QDir::Dirs); + TQString candidate; + TQDir tmp("/tmp", "cpufreqd-*", TQDir::Time, TQDir::Dirs); if (tmp.count()) candidate = "/tmp/" + tmp[0] + "/cpufreqd"; |