diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:25:03 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:25:03 +0000 |
commit | 636eef5bea9dd243a08d77c9c537fb36ee30f838 (patch) | |
tree | 633371d5444df2ff94709d964e9055daea7c2bcc /noatun/modules/infrared | |
parent | e654398e46e37abf457b2b1122ab898d2c51c49f (diff) | |
download | tdemultimedia-636eef5bea9dd243a08d77c9c537fb36ee30f838.tar.gz tdemultimedia-636eef5bea9dd243a08d77c9c537fb36ee30f838.zip |
TQt conversion fixes
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1158448 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'noatun/modules/infrared')
-rw-r--r-- | noatun/modules/infrared/irprefs.h | 4 | ||||
-rw-r--r-- | noatun/modules/infrared/lirc.cpp | 2 | ||||
-rw-r--r-- | noatun/modules/infrared/lirc.h | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/noatun/modules/infrared/irprefs.h b/noatun/modules/infrared/irprefs.h index 1d7196a9..925acaa0 100644 --- a/noatun/modules/infrared/irprefs.h +++ b/noatun/modules/infrared/irprefs.h @@ -5,8 +5,8 @@ #include <tqmap.h> #include <noatun/pref.h> -class QCheckBox; -class QListViewItem; +class TQCheckBox; +class TQListViewItem; class KListView; class KComboBox; class KIntSpinBox; diff --git a/noatun/modules/infrared/lirc.cpp b/noatun/modules/infrared/lirc.cpp index 657172d5..363849c1 100644 --- a/noatun/modules/infrared/lirc.cpp +++ b/noatun/modules/infrared/lirc.cpp @@ -32,7 +32,7 @@ Lirc::Lirc(TQObject *parent) return; } - m_socket = new QSocket; + m_socket = new TQSocket; m_socket->setSocket(sock); connect(m_socket, TQT_SIGNAL(readyRead()), TQT_SLOT(slotRead())); update(); diff --git a/noatun/modules/infrared/lirc.h b/noatun/modules/infrared/lirc.h index de9665fd..8519bb8a 100644 --- a/noatun/modules/infrared/lirc.h +++ b/noatun/modules/infrared/lirc.h @@ -6,7 +6,7 @@ #include <tqstringlist.h> #include <tqmap.h> -class QSocket; +class TQSocket; typedef TQMap<TQString, TQStringList> Remotes; |