diff options
Diffstat (limited to 'src/cpufreqd/cpufreqd.cpp')
-rw-r--r-- | src/cpufreqd/cpufreqd.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cpufreqd/cpufreqd.cpp b/src/cpufreqd/cpufreqd.cpp index 374a7cb..a759350 100644 --- a/src/cpufreqd/cpufreqd.cpp +++ b/src/cpufreqd/cpufreqd.cpp @@ -36,10 +36,10 @@ CPUFreqd::CPUFreqd() { m_menu = new TQPopupMenu(); - TQObject::connect(m_menu, TQT_SIGNAL(aboutToShow()), this, TQT_SLOT(updateMenu())); + TQObject::connect(m_menu, TQ_SIGNAL(aboutToShow()), this, TQ_SLOT(updateMenu())); m_dynamic = new TQAction(i18n("Select dynamically"), TQKeySequence(), this); - TQObject::connect(m_dynamic, TQT_SIGNAL(activated()), this, TQT_SLOT(setDynamic())); + TQObject::connect(m_dynamic, TQ_SIGNAL(activated()), this, TQ_SLOT(setDynamic())); m_dynamic->setToggleAction(true); m_dynamic->setOn(true); @@ -50,7 +50,7 @@ CPUFreqd::CPUFreqd() { m_actions->setAutoDelete(true); m_mapper = new TQSignalMapper(this); - TQObject::connect(m_mapper, TQT_SIGNAL(mapped(int)), this, TQT_SLOT(setProfile(int))); + TQObject::connect(m_mapper, TQ_SIGNAL(mapped(int)), this, TQ_SLOT(setProfile(int))); } CPUFreqd::~CPUFreqd() { @@ -111,7 +111,7 @@ void CPUFreqd::updateMenu() { for (unsigned int i = 0; i < m_profiles.count(); i++) if (m_profiles[i].isValid()) { cur = new TQAction(m_profiles[i].name(), TQKeySequence(), m_items); - TQObject::connect(cur, TQT_SIGNAL(activated()), m_mapper, TQT_SLOT(map())); + TQObject::connect(cur, TQ_SIGNAL(activated()), m_mapper, TQ_SLOT(map())); cur->setToggleAction(true); cur->setOn(m_profiles[i].active()); |