summaryrefslogtreecommitdiffstats
path: root/src/tdebluezioslave/obex
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-05 10:36:11 +0900
committerMichele Calgaro <[email protected]>2024-01-08 19:03:29 +0900
commit50734d4f8e3203418552808f66dc57e07a08e930 (patch)
tree249c7d6fcf916ea753be994b9461a0025ee991af /src/tdebluezioslave/obex
parent1f09199620d6eaccaab310e78c994e2a0f009c8c (diff)
downloadtdebluez-50734d4f8e3203418552808f66dc57e07a08e930.tar.gz
tdebluez-50734d4f8e3203418552808f66dc57e07a08e930.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit b05bbf90f3b7b82b722dfc584e9b040b0803d771)
Diffstat (limited to 'src/tdebluezioslave/obex')
-rw-r--r--src/tdebluezioslave/obex/obex.cpp2
-rw-r--r--src/tdebluezioslave/obex/tdeio_obex.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/tdebluezioslave/obex/obex.cpp b/src/tdebluezioslave/obex/obex.cpp
index fb1d81b..63d6082 100644
--- a/src/tdebluezioslave/obex/obex.cpp
+++ b/src/tdebluezioslave/obex/obex.cpp
@@ -279,7 +279,7 @@ UDSEntry Obex::extractUrlInfos(const KURL &url)
m_entryBuffer.clear();
StatJob *job = stat(url, false);
- connect(job, TQT_SIGNAL(result(Job *)), this, TQT_SLOT(slotStatResult(Job *)));
+ connect(job, TQ_SIGNAL(result(Job *)), this, TQ_SLOT(slotStatResult(Job *)));
tqApp->eventLoop()->enterLoop();
UDSEntry::iterator it = m_entryBuffer.begin();
diff --git a/src/tdebluezioslave/obex/tdeio_obex.cpp b/src/tdebluezioslave/obex/tdeio_obex.cpp
index 4d682ca..cc461e1 100644
--- a/src/tdebluezioslave/obex/tdeio_obex.cpp
+++ b/src/tdebluezioslave/obex/tdeio_obex.cpp
@@ -198,8 +198,8 @@ bool ObexProtocol::connectObex()
mSessionProperties = new org::freedesktop::DBus::PropertiesProxy("org.bluez", mSessionPath);
mSessionProperties->setConnection((*(mManager->getConnection())));
- connect(mSessionProperties, SIGNAL(PropertiesChanged ( const TQString&, const TQMap< TQString, TQT_DBusVariant >&, const TQStringList& )),
- this, SLOT(slotPropertiesChanged ( const TQString& , const TQMap< TQString, TQT_DBusVariant >&, const TQStringList& )));
+ connect(mSessionProperties, TQ_SIGNAL(PropertiesChanged ( const TQString&, const TQMap< TQString, TQT_DBusVariant >&, const TQStringList& )),
+ this, TQ_SLOT(slotPropertiesChanged ( const TQString& , const TQMap< TQString, TQT_DBusVariant >&, const TQStringList& )));
mFileTransfer = new org::bluez::obex::FileTransfer1Proxy("org.bluez.obex", mSessionPath);
mFileTransfer->setConnection((*(mManager->getConnection())));