summaryrefslogtreecommitdiffstats
path: root/src/libtdeobex/obexobjectmanagerImpl.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-05 10:36:11 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-05 10:36:11 +0900
commitb05bbf90f3b7b82b722dfc584e9b040b0803d771 (patch)
tree2a4f442342143e24875666691d4036be0528f585 /src/libtdeobex/obexobjectmanagerImpl.cpp
parent66ca19ad6b97fbfd4c2896b53c8c0d35cee0faa2 (diff)
downloadtdebluez-b05bbf90f3b7b82b722dfc584e9b040b0803d771.tar.gz
tdebluez-b05bbf90f3b7b82b722dfc584e9b040b0803d771.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/libtdeobex/obexobjectmanagerImpl.cpp')
-rw-r--r--src/libtdeobex/obexobjectmanagerImpl.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libtdeobex/obexobjectmanagerImpl.cpp b/src/libtdeobex/obexobjectmanagerImpl.cpp
index 50c59fe..a310869 100644
--- a/src/libtdeobex/obexobjectmanagerImpl.cpp
+++ b/src/libtdeobex/obexobjectmanagerImpl.cpp
@@ -130,7 +130,7 @@ bool ObexObjectManagerImpl::initDBUS()
if (!dBusConn.isConnected())
{
kdError() << "Failed to open connection to system message bus: " << dBusConn.lastError().message() << endl;
- TQTimer::singleShot(4000, this, TQT_SLOT(reconnect()));
+ TQTimer::singleShot(4000, this, TQ_SLOT(reconnect()));
return false;
}
setConnection(dBusConn);
@@ -156,8 +156,8 @@ bool ObexObjectManagerImpl::initDBUS()
slotInterfacesAdded(it.key(), tqMap1);
}
- connect(this, SIGNAL(InterfacesAdded(const TQT_DBusObjectPath&, const TQT_DBusDataMap< TQString >&)), this, SLOT(slotInterfacesAdded(const TQT_DBusObjectPath&, const TQT_DBusDataMap< TQString >& )));
- connect(this, SIGNAL(InterfacesRemoved(const TQT_DBusObjectPath& , const TQStringList& )), this, SLOT(slotInterfacesRemoved(const TQT_DBusObjectPath& , const TQStringList& )));
+ connect(this, TQ_SIGNAL(InterfacesAdded(const TQT_DBusObjectPath&, const TQT_DBusDataMap< TQString >&)), this, TQ_SLOT(slotInterfacesAdded(const TQT_DBusObjectPath&, const TQT_DBusDataMap< TQString >& )));
+ connect(this, TQ_SIGNAL(InterfacesRemoved(const TQT_DBusObjectPath& , const TQStringList& )), this, TQ_SLOT(slotInterfacesRemoved(const TQT_DBusObjectPath& , const TQStringList& )));
return true;
}