summaryrefslogtreecommitdiffstats
path: root/tdeutils
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 15:36:09 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 19:44:38 +0900
commit8eb500c4e81229a9853e2f9bac4f39450083f3d7 (patch)
tree3c700b8550635d12c771ff0a1cb310a40a88e4b7 /tdeutils
parenta91e58bb975c56acdab25227a8b1c1c842dbdd34 (diff)
downloadtdelibs-8eb500c4e81229a9853e2f9bac4f39450083f3d7.tar.gz
tdelibs-8eb500c4e81229a9853e2f9bac4f39450083f3d7.zip
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdeutils')
-rw-r--r--tdeutils/kcmultidialog.h2
-rw-r--r--tdeutils/kfind.h2
-rw-r--r--tdeutils/kfinddialog.h2
-rw-r--r--tdeutils/kpluginselector.h2
-rw-r--r--tdeutils/kpluginselector_p.h2
-rw-r--r--tdeutils/kreplace.h2
-rw-r--r--tdeutils/kreplacedialog.h2
-rw-r--r--tdeutils/ksettings/README.dox2
-rw-r--r--tdeutils/ksettings/componentsdialog.h2
-rw-r--r--tdeutils/ksettings/dialog.h2
-rw-r--r--tdeutils/ksettings/dispatcher.h2
-rw-r--r--tdeutils/ksettings/pluginpage.h2
-rw-r--r--tdeutils/tdecmodulecontainer.h2
-rw-r--r--tdeutils/tdecmoduleproxy.h2
-rw-r--r--tdeutils/tdecmoduleproxyIfaceImpl.h4
-rw-r--r--tdeutils/tdemultitabbar.h6
-rw-r--r--tdeutils/tdemultitabbar_p.h2
-rw-r--r--tdeutils/tests/kfindtest.h2
-rw-r--r--tdeutils/tests/kreplacetest.h2
19 files changed, 22 insertions, 22 deletions
diff --git a/tdeutils/kcmultidialog.h b/tdeutils/kcmultidialog.h
index 8f30603e6..89aedf0a5 100644
--- a/tdeutils/kcmultidialog.h
+++ b/tdeutils/kcmultidialog.h
@@ -42,7 +42,7 @@ class TDECModuleInfo;
*/
class TDEUTILS_EXPORT KCMultiDialog : public KDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
/**
diff --git a/tdeutils/kfind.h b/tdeutils/kfind.h
index 054eeb259..11ce20d83 100644
--- a/tdeutils/kfind.h
+++ b/tdeutils/kfind.h
@@ -103,7 +103,7 @@
class TDEUTILS_EXPORT KFind :
public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/tdeutils/kfinddialog.h b/tdeutils/kfinddialog.h
index 687939e05..0494f7861 100644
--- a/tdeutils/kfinddialog.h
+++ b/tdeutils/kfinddialog.h
@@ -74,7 +74,7 @@ class TQCheckBox;
class TDEUTILS_EXPORT KFindDialog:
public KDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/tdeutils/kpluginselector.h b/tdeutils/kpluginselector.h
index 111abfe0d..12d484d0e 100644
--- a/tdeutils/kpluginselector.h
+++ b/tdeutils/kpluginselector.h
@@ -61,7 +61,7 @@ class TDEUTILS_EXPORT KPluginSelector : public TQWidget
{
friend class KPluginSelectionWidget;
- Q_OBJECT
+ TQ_OBJECT
public:
/**
* Create a new KPluginSelector.
diff --git a/tdeutils/kpluginselector_p.h b/tdeutils/kpluginselector_p.h
index 79a39ca94..1983a6468 100644
--- a/tdeutils/kpluginselector_p.h
+++ b/tdeutils/kpluginselector_p.h
@@ -41,7 +41,7 @@ class TDECModuleInfo;
*/
class KPluginSelectionWidget : public TQWidget
{
- Q_OBJECT
+ TQ_OBJECT
public:
/**
* Create a new Plugin Selector widget.
diff --git a/tdeutils/kreplace.h b/tdeutils/kreplace.h
index e30e20b44..2ecbd3990 100644
--- a/tdeutils/kreplace.h
+++ b/tdeutils/kreplace.h
@@ -97,7 +97,7 @@ class KReplaceNextDialog;
class TDEUTILS_EXPORT KReplace :
public KFind
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/tdeutils/kreplacedialog.h b/tdeutils/kreplacedialog.h
index 573a059f2..9e787730e 100644
--- a/tdeutils/kreplacedialog.h
+++ b/tdeutils/kreplacedialog.h
@@ -59,7 +59,7 @@ class TQRect;
class TDEUTILS_EXPORT KReplaceDialog:
public KFindDialog
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/tdeutils/ksettings/README.dox b/tdeutils/ksettings/README.dox
index 40d54ee3d..39e38f4a0 100644
--- a/tdeutils/ksettings/README.dox
+++ b/tdeutils/ksettings/README.dox
@@ -47,7 +47,7 @@ Every page is a KCM. This is what you need for creating a page:
\code
class MyAppConfig : public TDECModule
{
- Q_OBJECT
+ TQ_OBJECT
public:
MyAppConfig( QWidget *parent, const char *name = 0, const QStringList &args =
QStringList() );
diff --git a/tdeutils/ksettings/componentsdialog.h b/tdeutils/ksettings/componentsdialog.h
index 49e5a26e9..ca6d029a9 100644
--- a/tdeutils/ksettings/componentsdialog.h
+++ b/tdeutils/ksettings/componentsdialog.h
@@ -39,7 +39,7 @@ namespace KSettings
*/
class TDEUTILS_EXPORT ComponentsDialog : public KDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
/**
Create Dialog.
diff --git a/tdeutils/ksettings/dialog.h b/tdeutils/ksettings/dialog.h
index f42558b26..7f87b861b 100644
--- a/tdeutils/ksettings/dialog.h
+++ b/tdeutils/ksettings/dialog.h
@@ -73,7 +73,7 @@ namespace KSettings
class TDEUTILS_EXPORT Dialog : public TQObject
{
friend class PageNode;
- Q_OBJECT
+ TQ_OBJECT
public:
/**
* Tells the dialog whether the entries in the listview are all static
diff --git a/tdeutils/ksettings/dispatcher.h b/tdeutils/ksettings/dispatcher.h
index ec5a540b1..aa3b50c41 100644
--- a/tdeutils/ksettings/dispatcher.h
+++ b/tdeutils/ksettings/dispatcher.h
@@ -52,7 +52,7 @@ class TDEUTILS_EXPORT Dispatcher : public TQObject
{
friend class KStaticDeleter<Dispatcher>;
- Q_OBJECT
+ TQ_OBJECT
public:
/**
* Get a reference the the Dispatcher object.
diff --git a/tdeutils/ksettings/pluginpage.h b/tdeutils/ksettings/pluginpage.h
index e9a23fcd8..f3dc1c946 100644
--- a/tdeutils/ksettings/pluginpage.h
+++ b/tdeutils/ksettings/pluginpage.h
@@ -72,7 +72,7 @@ namespace KSettings
*/
class TDEUTILS_EXPORT PluginPage : public TDECModule
{
- Q_OBJECT
+ TQ_OBJECT
public:
/**
* Standart TDECModule constructor. Automatically creates the the
diff --git a/tdeutils/tdecmodulecontainer.h b/tdeutils/tdecmodulecontainer.h
index 31961ab7f..4cfb2ca03 100644
--- a/tdeutils/tdecmodulecontainer.h
+++ b/tdeutils/tdecmodulecontainer.h
@@ -52,7 +52,7 @@ class TDECModuleProxy;
*/
class TDEUTILS_EXPORT TDECModuleContainer : public TDECModule
{
- Q_OBJECT
+ TQ_OBJECT
public:
/**
* Creates a TDECModuleContainer with tabs, each one containing one of the
diff --git a/tdeutils/tdecmoduleproxy.h b/tdeutils/tdecmoduleproxy.h
index 11bbca987..1aa337a23 100644
--- a/tdeutils/tdecmoduleproxy.h
+++ b/tdeutils/tdecmoduleproxy.h
@@ -67,7 +67,7 @@ class TDEProcess;
*/
class TDEUTILS_EXPORT TDECModuleProxy : public TQWidget
{
-Q_OBJECT
+TQ_OBJECT
friend class TDECModuleProxyRootCommunicatorImpl;
diff --git a/tdeutils/tdecmoduleproxyIfaceImpl.h b/tdeutils/tdecmoduleproxyIfaceImpl.h
index a8a80f23b..ca77a966e 100644
--- a/tdeutils/tdecmoduleproxyIfaceImpl.h
+++ b/tdeutils/tdecmoduleproxyIfaceImpl.h
@@ -33,7 +33,7 @@ class TDECModuleProxyIfaceImpl: public TQObject, virtual public TDECModuleProxyI
* Update: This is probably not possible, since we don't want the DCOPObject when
* we're running in root mode. */
- Q_OBJECT
+ TQ_OBJECT
public:
@@ -79,7 +79,7 @@ private:
class TDECModuleProxyRootCommunicatorImpl: public TQObject,
virtual public TDECModuleProxyRootDispatcher
{
- Q_OBJECT
+ TQ_OBJECT
public:
TDECModuleProxyRootCommunicatorImpl( const TQCString& name, TDECModuleProxy* const client );
diff --git a/tdeutils/tdemultitabbar.h b/tdeutils/tdemultitabbar.h
index eca4695ff..3d7785842 100644
--- a/tdeutils/tdemultitabbar.h
+++ b/tdeutils/tdemultitabbar.h
@@ -55,7 +55,7 @@ class KMultiTabBarInternal;
*/
class TDEUTILS_EXPORT KMultiTabBar: public TQWidget
{
- Q_OBJECT
+ TQ_OBJECT
public:
/**
* The tab bar's orientation. Also constraints the bar's position.
@@ -204,7 +204,7 @@ private:
*/
class TDEUTILS_EXPORT KMultiTabBarButton: public TQPushButton
{
- Q_OBJECT
+ TQ_OBJECT
public:
/** @internal */
KMultiTabBarButton(const TQPixmap& pic,const TQString&, TQPopupMenu *popup,
@@ -267,7 +267,7 @@ protected slots:
*/
class TDEUTILS_EXPORT KMultiTabBarTab: public KMultiTabBarButton
{
- Q_OBJECT
+ TQ_OBJECT
public:
/** @internal */
KMultiTabBarTab(const TQPixmap& pic,const TQString&,int id,TQWidget *parent,
diff --git a/tdeutils/tdemultitabbar_p.h b/tdeutils/tdemultitabbar_p.h
index 353a33260..61f8e82c7 100644
--- a/tdeutils/tdemultitabbar_p.h
+++ b/tdeutils/tdemultitabbar_p.h
@@ -29,7 +29,7 @@
class KMultiTabBarInternal: public TQScrollView
{
- Q_OBJECT
+ TQ_OBJECT
public:
KMultiTabBarInternal(TQWidget *parent,KMultiTabBar::KMultiTabBarMode bm);
int appendTab(const TQPixmap &,int=-1,const TQString& =TQString::null);
diff --git a/tdeutils/tests/kfindtest.h b/tdeutils/tests/kfindtest.h
index 847d9579c..09526c1b0 100644
--- a/tdeutils/tests/kfindtest.h
+++ b/tdeutils/tests/kfindtest.h
@@ -27,7 +27,7 @@ class KFind;
class KFindTest : public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
KFindTest(const TQStringList &text) :
diff --git a/tdeutils/tests/kreplacetest.h b/tdeutils/tests/kreplacetest.h
index b8fb8120b..71aa8cebb 100644
--- a/tdeutils/tests/kreplacetest.h
+++ b/tdeutils/tests/kreplacetest.h
@@ -27,7 +27,7 @@ class KReplace;
class KReplaceTest : public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
KReplaceTest( const TQStringList& text, int button )
: TQObject( 0L ), m_text( text ), m_replace( 0 ), m_button( button ) {}