diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-05 10:36:11 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-08 19:03:29 +0900 |
commit | 50734d4f8e3203418552808f66dc57e07a08e930 (patch) | |
tree | 249c7d6fcf916ea753be994b9461a0025ee991af /src/libtdeobex | |
parent | 1f09199620d6eaccaab310e78c994e2a0f009c8c (diff) | |
download | tdebluez-50734d4f8e3203418552808f66dc57e07a08e930.tar.gz tdebluez-50734d4f8e3203418552808f66dc57e07a08e930.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit b05bbf90f3b7b82b722dfc584e9b040b0803d771)
Diffstat (limited to 'src/libtdeobex')
-rw-r--r-- | src/libtdeobex/obexobjectmanagerImpl.cpp | 6 |
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; } |