summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-07-20 14:04:57 +0900
committerMichele Calgaro <[email protected]>2023-07-25 13:16:11 +0900
commit0f1dee482b6a2683a2c7ab0670e0a765c2508d2e (patch)
tree900f07de6bfa8a76d0559552340f600b302f21b3
parent27b70ff7c4df708291f9c4a16977438894b80f5f (diff)
downloadtdebluez-0f1dee482b6a2683a2c7ab0670e0a765c2508d2e.tar.gz
tdebluez-0f1dee482b6a2683a2c7ab0670e0a765c2508d2e.zip
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit bcf08b15c538ea1181c38e1ef51a2b4f08a92e83)
-rw-r--r--src/libtdebluez/adapterImpl.h2
-rw-r--r--src/libtdebluez/deviceImpl.h2
-rw-r--r--src/libtdebluez/objectmanagerImpl.h2
-rw-r--r--src/libtdeobex/obexobjectmanagerImpl.h2
-rw-r--r--src/tdebluez/adapterconfig.h2
-rw-r--r--src/tdebluez/adapterconfigdialog.h2
-rw-r--r--src/tdebluez/application.h2
-rw-r--r--src/tdebluez/devicesetupwizard.h2
-rw-r--r--src/tdebluez/devicewizard.h2
-rw-r--r--src/tdebluez/mediacontrol.h2
-rw-r--r--src/tdebluez/trayicon.h2
-rw-r--r--src/tdebluezauth/application.h2
-rw-r--r--src/tdebluezauth/authorize.h2
-rw-r--r--src/tdebluezauth/pindialog.h2
-rw-r--r--src/tdebluezioclient/commandhandler.h2
-rw-r--r--src/tdebluezioslave/bluetooth/tdeiobluetooth.h2
-rw-r--r--src/tdebluezioslave/obex/obex.h2
-rw-r--r--src/tdebluezioslave/obex/tdeio_obex.h2
18 files changed, 18 insertions, 18 deletions
diff --git a/src/libtdebluez/adapterImpl.h b/src/libtdebluez/adapterImpl.h
index 8499ab3..f0cbdab 100644
--- a/src/libtdebluez/adapterImpl.h
+++ b/src/libtdebluez/adapterImpl.h
@@ -37,7 +37,7 @@ namespace TDEBluetooth
class KDE_EXPORT AdapterImpl: public Adapter1Proxy
{
- Q_OBJECT
+ TQ_OBJECT
public:
AdapterImpl(const TQString& service, const TQString& path, TQObject* parent = 0, const char* name = 0);
diff --git a/src/libtdebluez/deviceImpl.h b/src/libtdebluez/deviceImpl.h
index ffc55e1..f2f2a0e 100644
--- a/src/libtdebluez/deviceImpl.h
+++ b/src/libtdebluez/deviceImpl.h
@@ -40,7 +40,7 @@ namespace TDEBluetooth
class KDE_EXPORT DeviceImpl: public org::bluez::Device1Proxy
{
- Q_OBJECT
+ TQ_OBJECT
public:
DeviceImpl(const TQString& service, const TQString& path, TQObject* parent = 0, const char* name = 0);
diff --git a/src/libtdebluez/objectmanagerImpl.h b/src/libtdebluez/objectmanagerImpl.h
index e5cf94b..24b670c 100644
--- a/src/libtdebluez/objectmanagerImpl.h
+++ b/src/libtdebluez/objectmanagerImpl.h
@@ -50,7 +50,7 @@ namespace TDEBluetooth
class KDE_EXPORT ObjectManagerImpl : public org::freedesktop::DBus::ObjectManagerProxy
{
- Q_OBJECT
+ TQ_OBJECT
public:
ObjectManagerImpl(const TQString& service, const TQString& path, TQObject* parent = 0, const char* name = 0);
diff --git a/src/libtdeobex/obexobjectmanagerImpl.h b/src/libtdeobex/obexobjectmanagerImpl.h
index db7f03c..ba98273 100644
--- a/src/libtdeobex/obexobjectmanagerImpl.h
+++ b/src/libtdeobex/obexobjectmanagerImpl.h
@@ -43,7 +43,7 @@ namespace TDEObex
class KDE_EXPORT ObexObjectManagerImpl: public org::freedesktop::DBus::ObjectManagerProxy
{
- Q_OBJECT
+ TQ_OBJECT
public:
// ObexObjectManagerImpl(){}
diff --git a/src/tdebluez/adapterconfig.h b/src/tdebluez/adapterconfig.h
index 2936580..d360bab 100644
--- a/src/tdebluez/adapterconfig.h
+++ b/src/tdebluez/adapterconfig.h
@@ -43,7 +43,7 @@ using namespace TDEBluetooth;
class AdapterConfig: public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
AdapterConfig(ObjectManagerImpl *mgr, AdapterImpl *adapter);
diff --git a/src/tdebluez/adapterconfigdialog.h b/src/tdebluez/adapterconfigdialog.h
index 7cb0157..e5c777c 100644
--- a/src/tdebluez/adapterconfigdialog.h
+++ b/src/tdebluez/adapterconfigdialog.h
@@ -37,7 +37,7 @@ using namespace TDEBluetooth;
class AdapterConfigDialog: public KDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
AdapterConfigDialog(TDEBluetoothApp *app);
diff --git a/src/tdebluez/application.h b/src/tdebluez/application.h
index 84411ad..ff12551 100644
--- a/src/tdebluez/application.h
+++ b/src/tdebluez/application.h
@@ -42,7 +42,7 @@ using namespace TDEBluetooth;
class TDEBluetoothApp: public KUniqueApplication
{
- Q_OBJECT
+ TQ_OBJECT
public:
TDEBluetoothApp();
diff --git a/src/tdebluez/devicesetupwizard.h b/src/tdebluez/devicesetupwizard.h
index c75e839..98f7277 100644
--- a/src/tdebluez/devicesetupwizard.h
+++ b/src/tdebluez/devicesetupwizard.h
@@ -34,7 +34,7 @@ using namespace TDEBluetooth;
class DeviceSetupWizard: public DeviceSetupWizardDialog
{
- Q_OBJECT
+ TQ_OBJECT
public:
DeviceSetupWizard(ObjectManagerImpl *manager);
diff --git a/src/tdebluez/devicewizard.h b/src/tdebluez/devicewizard.h
index dae8fe5..67bda35 100644
--- a/src/tdebluez/devicewizard.h
+++ b/src/tdebluez/devicewizard.h
@@ -47,7 +47,7 @@ using namespace TDEBluetooth;
class DeviceWizard: public DeviceDialog
{
- Q_OBJECT
+ TQ_OBJECT
public:
DeviceWizard(TDEBluetoothApp* app);
diff --git a/src/tdebluez/mediacontrol.h b/src/tdebluez/mediacontrol.h
index b096045..c7be1dd 100644
--- a/src/tdebluez/mediacontrol.h
+++ b/src/tdebluez/mediacontrol.h
@@ -34,7 +34,7 @@
class MediaControl: public MediaCtlDlg
{
- Q_OBJECT
+ TQ_OBJECT
public:
MediaControl(TQString path, TQT_DBusConnection* conn);
diff --git a/src/tdebluez/trayicon.h b/src/tdebluez/trayicon.h
index b77b918..2ca747e 100644
--- a/src/tdebluez/trayicon.h
+++ b/src/tdebluez/trayicon.h
@@ -54,7 +54,7 @@ class TDEBluetoothApp;
*/
class TrayIcon: public KSystemTray
{
- Q_OBJECT
+ TQ_OBJECT
public:
TrayIcon(TDEBluetoothApp* app);
diff --git a/src/tdebluezauth/application.h b/src/tdebluezauth/application.h
index 499418a..b416f50 100644
--- a/src/tdebluezauth/application.h
+++ b/src/tdebluezauth/application.h
@@ -32,7 +32,7 @@
class TDEBluezAuth: public KUniqueApplication
{
- Q_OBJECT
+ TQ_OBJECT
public:
TDEBluezAuth();
diff --git a/src/tdebluezauth/authorize.h b/src/tdebluezauth/authorize.h
index ff9e9b3..6643233 100644
--- a/src/tdebluezauth/authorize.h
+++ b/src/tdebluezauth/authorize.h
@@ -36,7 +36,7 @@
class AuthorizeDialog : public KDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
AuthorizeDialog(const TQString &addr, const TQString &devName, const TQString &service);
diff --git a/src/tdebluezauth/pindialog.h b/src/tdebluezauth/pindialog.h
index f99fd1f..95aacd6 100644
--- a/src/tdebluezauth/pindialog.h
+++ b/src/tdebluezauth/pindialog.h
@@ -39,7 +39,7 @@
class PinDialog : public KDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
PinDialog(const TQString &addr, const TQString &devName);
diff --git a/src/tdebluezioclient/commandhandler.h b/src/tdebluezioclient/commandhandler.h
index 29fb552..1341585 100644
--- a/src/tdebluezioclient/commandhandler.h
+++ b/src/tdebluezioclient/commandhandler.h
@@ -21,7 +21,7 @@ namespace TDEIO { class Job; }
class CommandHandler : public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
CommandHandler(TDECmdLineArgs *args);
diff --git a/src/tdebluezioslave/bluetooth/tdeiobluetooth.h b/src/tdebluezioslave/bluetooth/tdeiobluetooth.h
index 7b881f2..92db006 100644
--- a/src/tdebluezioslave/bluetooth/tdeiobluetooth.h
+++ b/src/tdebluezioslave/bluetooth/tdeiobluetooth.h
@@ -20,7 +20,7 @@
class TDEioBluetooth : public TDEIO::ForwardingSlaveBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
TDEioBluetooth(const TQCString &protocol, const TQCString &pool_socket, const TQCString &app_socket);
diff --git a/src/tdebluezioslave/obex/obex.h b/src/tdebluezioslave/obex/obex.h
index bc6d3cc..2ea0f67 100644
--- a/src/tdebluezioslave/obex/obex.h
+++ b/src/tdebluezioslave/obex/obex.h
@@ -36,7 +36,7 @@ using namespace TDEIO;
class Obex : public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
Obex(TQString & mProtocol);
diff --git a/src/tdebluezioslave/obex/tdeio_obex.h b/src/tdebluezioslave/obex/tdeio_obex.h
index afa4b2e..a71bf83 100644
--- a/src/tdebluezioslave/obex/tdeio_obex.h
+++ b/src/tdebluezioslave/obex/tdeio_obex.h
@@ -37,7 +37,7 @@
class ObexProtocol: public TQObject, public TDEIO::SlaveBase {
- Q_OBJECT
+ TQ_OBJECT
public:
ObexProtocol(const TQCString &protcol, const TQCString &pool_socket,