summaryrefslogtreecommitdiffstats
path: root/src/gui/application/LircClient.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/application/LircClient.cpp')
-rw-r--r--src/gui/application/LircClient.cpp10
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;
}