diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-09-06 20:59:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-09-06 20:59:29 +0000 |
commit | 11f31c37e5fa4889d9989f10272f44845449cb7b (patch) | |
tree | 4383da04a76c497950d957fc6120b0fd0d9082c2 /src/gui/application/LircClient.cpp | |
parent | 832eb69d571e8e518db45d0c0e6fbc0f00690209 (diff) | |
download | rosegarden-11f31c37e5fa4889d9989f10272f44845449cb7b.tar.gz rosegarden-11f31c37e5fa4889d9989f10272f44845449cb7b.zip |
Initial TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/rosegarden@1172292 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/gui/application/LircClient.cpp')
-rw-r--r-- | src/gui/application/LircClient.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gui/application/LircClient.cpp b/src/gui/application/LircClient.cpp index ae731d7..7664b9e 100644 --- a/src/gui/application/LircClient.cpp +++ b/src/gui/application/LircClient.cpp @@ -32,8 +32,8 @@ #include "misc/Debug.h" #include "base/Exception.h" -#include <qobject.h> -#include <qsocketnotifier.h> +#include <tqobject.h> +#include <tqsocketnotifier.h> #include <fcntl.h> #include <cstdlib> @@ -41,7 +41,7 @@ namespace Rosegarden { LircClient::LircClient(void) - : QObject() + : TQObject() { int socketFlags; @@ -61,8 +61,8 @@ LircClient::LircClient(void) fcntl(socketFlags, F_SETFL, socketFlags | O_NONBLOCK); } - m_socketNotifier = new QSocketNotifier(m_socket, QSocketNotifier::Read, 0); - connect(m_socketNotifier, SIGNAL(activated(int)), this, SLOT(readButton()) ); + m_socketNotifier = new TQSocketNotifier(m_socket, TQSocketNotifier::Read, 0); + connect(m_socketNotifier, TQT_SIGNAL(activated(int)), this, TQT_SLOT(readButton()) ); RG_DEBUG << "LircClient::LircClient: connected to socket: " << m_socket << endl; } |