summaryrefslogtreecommitdiffstats
path: root/src/cpufreqd/cpufreqdprofile.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpufreqd/cpufreqdprofile.h')
-rw-r--r--src/cpufreqd/cpufreqdprofile.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/cpufreqd/cpufreqdprofile.h b/src/cpufreqd/cpufreqdprofile.h
index f57e36d..93c9aab 100644
--- a/src/cpufreqd/cpufreqdprofile.h
+++ b/src/cpufreqd/cpufreqdprofile.h
@@ -20,29 +20,29 @@
#ifndef CPUFREQDPROFILE_H
#define CPUFREQDPROFILE_H
-#include <qstring.h>
+#include <tqstring.h>
class CPUFreqdProfile {
public:
CPUFreqdProfile() {};
- CPUFreqdProfile(QString & descr);
+ CPUFreqdProfile(TQString & descr);
virtual ~CPUFreqdProfile();
bool isValid() const;
bool active() const;
- const QString & name() const;
+ const TQString & name() const;
int minfreq() const;
int maxfreq() const;
- const QString & policy() const;
+ const TQString & policy() const;
private:
int m_active;
- QString m_name;
+ TQString m_name;
int m_id;
int m_minfreq;
int m_maxfreq;
- QString m_policy;
+ TQString m_policy;
};
#endif