summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 14:32:19 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 14:32:19 +0900
commitec1a300bc97294208ca17f3ce554fc2da0491752 (patch)
tree1675de116056a1d5c380e63f2f47931ba587dcd4
parent83224dbf35a5575fb6921c43775000b2ac4eb88a (diff)
downloadkrename-ec1a300b.tar.gz
krename-ec1a300b.zip
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--krename/ProgressDialog.h2
-rw-r--r--krename/commandplugin.h2
-rw-r--r--krename/confdialog.h2
-rw-r--r--krename/coorddialog.h4
-rw-r--r--krename/datetime.h2
-rw-r--r--krename/dsdirselectdialog.h2
-rw-r--r--krename/encodingplugin.h2
-rw-r--r--krename/fileoperation.h2
-rw-r--r--krename/fileplugin.h2
-rw-r--r--krename/firststartdlg.h2
-rw-r--r--krename/helpdialog.h4
-rw-r--r--krename/kmyhistorycombo.h2
-rw-r--r--krename/kmylistbox.h2
-rw-r--r--krename/kmylistview.h2
-rw-r--r--krename/krecursivelister.h2
-rw-r--r--krename/krenameimpl.h2
-rw-r--r--krename/mydirplugin.h2
-rw-r--r--krename/myinputdialog.h2
-rw-r--r--krename/numberdialog.h4
-rw-r--r--krename/permission.h2
-rw-r--r--krename/pictureplugin.h2
-rw-r--r--krename/plugin.h2
-rw-r--r--krename/profiledlg.h2
-rw-r--r--krename/replacedialog.h2
-rw-r--r--krename/tabs.h2
-rw-r--r--krename/threadedlister.h2
-rw-r--r--krename/translitplugin.h2
-rw-r--r--krename/undodialog.h2
-rw-r--r--krename/wizard.h2
29 files changed, 32 insertions, 32 deletions
diff --git a/krename/ProgressDialog.h b/krename/ProgressDialog.h
index 2ca968c..c9c5498 100644
--- a/krename/ProgressDialog.h
+++ b/krename/ProgressDialog.h
@@ -43,7 +43,7 @@ class TQHBoxLayout;
class TQVBoxLayout;
class ProgressDialog : public TQWidget
{
- Q_OBJECT
+ TQ_OBJECT
public:
ProgressDialog( TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
diff --git a/krename/commandplugin.h b/krename/commandplugin.h
index c951d19..a3143ab 100644
--- a/krename/commandplugin.h
+++ b/krename/commandplugin.h
@@ -28,7 +28,7 @@ class KLineEdit;
class TDEListBox;
class KPushButton;
class CommandPlugin : public Plugin {
- Q_OBJECT
+ TQ_OBJECT
public:
const TQString getName() const;
diff --git a/krename/confdialog.h b/krename/confdialog.h
index 0efe999..d8d429e 100644
--- a/krename/confdialog.h
+++ b/krename/confdialog.h
@@ -32,7 +32,7 @@ class TQVBoxLayout;
class TQWidget;
class KIntNumInput;
class ConfDialog : public KDialogBase, public GUIModeSelector {
- Q_OBJECT
+ TQ_OBJECT
public:
ConfDialog( TQWidget* parent = 0, const char* name = 0 );
diff --git a/krename/coorddialog.h b/krename/coorddialog.h
index 009897d..746312e 100644
--- a/krename/coorddialog.h
+++ b/krename/coorddialog.h
@@ -23,7 +23,7 @@
class TQKeyEvent;
class DSLineEdit : public KLineEdit {
- Q_OBJECT
+ TQ_OBJECT
public:
DSLineEdit( TQWidget* parent = 0, const char* name = 0 );
@@ -46,7 +46,7 @@ class TQString;
* the coordinates of a filename using an [x;y] token.
*/
class CoordDialog : public KDialogBase {
- Q_OBJECT
+ TQ_OBJECT
public:
CoordDialog( const TQString & file, TQWidget *_parent=0, const char *name=0);
diff --git a/krename/datetime.h b/krename/datetime.h
index 8672a7a..21ffa5a 100644
--- a/krename/datetime.h
+++ b/krename/datetime.h
@@ -42,7 +42,7 @@ class TQString;
class TQWidget;
class MyDatePlugin: public Plugin {
- Q_OBJECT
+ TQ_OBJECT
public:
const TQString getName() const;
diff --git a/krename/dsdirselectdialog.h b/krename/dsdirselectdialog.h
index 5fb3c1f..877c013 100644
--- a/krename/dsdirselectdialog.h
+++ b/krename/dsdirselectdialog.h
@@ -26,7 +26,7 @@ class KComboBox;
/* A small helper class to allow layout changes in KDirSelectDialog */
class DSDirSelectDialog : public KFileDialog {
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/krename/encodingplugin.h b/krename/encodingplugin.h
index 710a340..f59c5c9 100644
--- a/krename/encodingplugin.h
+++ b/krename/encodingplugin.h
@@ -28,7 +28,7 @@ class KComboBox;
class TQCheckBox;
class EncodingPlugin : public Plugin {
- Q_OBJECT
+ TQ_OBJECT
public:
const TQString getName() const;
diff --git a/krename/fileoperation.h b/krename/fileoperation.h
index ab5c187..4078549 100644
--- a/krename/fileoperation.h
+++ b/krename/fileoperation.h
@@ -24,7 +24,7 @@
class TQString;
class FileOperation: public TQObject {
- Q_OBJECT
+ TQ_OBJECT
public:
FileOperation();
diff --git a/krename/fileplugin.h b/krename/fileplugin.h
index edda511..43a70d6 100644
--- a/krename/fileplugin.h
+++ b/krename/fileplugin.h
@@ -38,7 +38,7 @@ class TQWidget;
class TQVBoxLayout;
class KFilePlugin;
class FilePlugin : public Plugin {
- Q_OBJECT
+ TQ_OBJECT
public:
FilePlugin( KService* service );
diff --git a/krename/firststartdlg.h b/krename/firststartdlg.h
index b09a41e..b95ae58 100644
--- a/krename/firststartdlg.h
+++ b/krename/firststartdlg.h
@@ -23,7 +23,7 @@
#include "guimodeselector.h"
class FirstStartDlg : public KDialogBase, public GUIModeSelector {
- Q_OBJECT
+ TQ_OBJECT
public:
FirstStartDlg(TQWidget *parent=0, const char *name=0);
diff --git a/krename/helpdialog.h b/krename/helpdialog.h
index 9cdf0fc..75865b1 100644
--- a/krename/helpdialog.h
+++ b/krename/helpdialog.h
@@ -33,7 +33,7 @@ class TDEListView;
class KPushButton;
class HelpDialogData : public TQObject {
- Q_OBJECT
+ TQ_OBJECT
public:
HelpDialogData() {}
@@ -74,7 +74,7 @@ class HelpDialogData : public TQObject {
class HelpDialog : public TQDialog
{
- Q_OBJECT
+ TQ_OBJECT
public:
HelpDialog( HelpDialogData* data, TQWidget* parent = 0,
diff --git a/krename/kmyhistorycombo.h b/krename/kmyhistorycombo.h
index 1de4ac9..a2892e2 100644
--- a/krename/kmyhistorycombo.h
+++ b/krename/kmyhistorycombo.h
@@ -26,7 +26,7 @@ class TQPopupMenu;
class TQTimer;
class KMyHistoryCombo : public KHistoryCombo {
- Q_OBJECT
+ TQ_OBJECT
public:
/** Create a new KMyHistoryCombo which has automatic KRename default history
diff --git a/krename/kmylistbox.h b/krename/kmylistbox.h
index ccb584f..27c8e08 100644
--- a/krename/kmylistbox.h
+++ b/krename/kmylistbox.h
@@ -36,7 +36,7 @@ class TQPixmap;
class TQPainter;
class TQPoint;
class KMyListBox : public TDEListBox {
- Q_OBJECT
+ TQ_OBJECT
public:
enum { ASCENDING = 1, DESCENDING = 2, RANDOM = 3, NUMMERIC = 4, UNSORTED = 0 };
diff --git a/krename/kmylistview.h b/krename/kmylistview.h
index c16c46f..291368f 100644
--- a/krename/kmylistview.h
+++ b/krename/kmylistview.h
@@ -25,7 +25,7 @@
class TQMouseEvent;
class KMyListView : public TDEListView {
- Q_OBJECT
+ TQ_OBJECT
public:
KMyListView( TQValueList<manualchanges>* _changes, KMyListBox* _list, TQWidget* parent=0, const char* name=0 );
diff --git a/krename/krecursivelister.h b/krename/krecursivelister.h
index eff1e58..a6af624 100644
--- a/krename/krecursivelister.h
+++ b/krename/krecursivelister.h
@@ -33,7 +33,7 @@
*/
class KRecursiveLister : public TQObject {
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/krename/krenameimpl.h b/krename/krenameimpl.h
index ee897e9..330df88 100644
--- a/krename/krenameimpl.h
+++ b/krename/krenameimpl.h
@@ -62,7 +62,7 @@ class TQWidget;
KPushButton* createButton( KGuiItem item, TQWidget* parent );
class KRenameImpl : public TQObject, public KRenameDCOP {
- Q_OBJECT
+ TQ_OBJECT
friend class ProfileManager;
diff --git a/krename/mydirplugin.h b/krename/mydirplugin.h
index 7c13b69..cecc5e0 100644
--- a/krename/mydirplugin.h
+++ b/krename/mydirplugin.h
@@ -33,7 +33,7 @@ class TQString;
class TQVBoxLayout;
class TQWidget;
class MyDirPlugin : public Plugin {
- Q_OBJECT
+ TQ_OBJECT
public:
const TQString getName() const;
diff --git a/krename/myinputdialog.h b/krename/myinputdialog.h
index f1c7a75..be1dc2a 100644
--- a/krename/myinputdialog.h
+++ b/krename/myinputdialog.h
@@ -29,7 +29,7 @@ class TQLabel;
class TQString;
class MyInputDialog : public TQDialog
{
- Q_OBJECT
+ TQ_OBJECT
public:
MyInputDialog( TQString filename, bool revertEnabled = true, TQWidget* parent = 0 );
diff --git a/krename/numberdialog.h b/krename/numberdialog.h
index 81ede73..f5baf8a 100644
--- a/krename/numberdialog.h
+++ b/krename/numberdialog.h
@@ -27,7 +27,7 @@
class KMyIntSpinBox : public KIntSpinBox
{
- Q_OBJECT
+ TQ_OBJECT
public:
KMyIntSpinBox( TQWidget* parent )
@@ -45,7 +45,7 @@ class KIntNumInput;
class TDEListBox;
class KPushButton;
class NumberDialog : public KDialogBase {
- Q_OBJECT
+ TQ_OBJECT
public:
NumberDialog(TQValueList<int> & n,TQWidget *parent=0);
diff --git a/krename/permission.h b/krename/permission.h
index da4dbd5..7e5742b 100644
--- a/krename/permission.h
+++ b/krename/permission.h
@@ -40,7 +40,7 @@ class TQWidget;
// Plugin class starts here
class MyPermPlugin: public Plugin {
- Q_OBJECT
+ TQ_OBJECT
public:
const TQString getName() const;
diff --git a/krename/pictureplugin.h b/krename/pictureplugin.h
index 2d95c6a..e87f85e 100644
--- a/krename/pictureplugin.h
+++ b/krename/pictureplugin.h
@@ -27,7 +27,7 @@ class TQHBoxLayout;
class TQString;
class TQWidget;
class PicturePlugin : public FilePlugin {
- Q_OBJECT
+ TQ_OBJECT
public:
PicturePlugin();
diff --git a/krename/plugin.h b/krename/plugin.h
index d7ee317..f7a3a6c 100644
--- a/krename/plugin.h
+++ b/krename/plugin.h
@@ -29,7 +29,7 @@ class TQStringList;
class TQWidget;
class TQVBoxLayout;
class Plugin : public TQObject {
- Q_OBJECT
+ TQ_OBJECT
public:
Plugin();
diff --git a/krename/profiledlg.h b/krename/profiledlg.h
index c711eec..85a72c9 100644
--- a/krename/profiledlg.h
+++ b/krename/profiledlg.h
@@ -53,7 +53,7 @@ class ProfileManager {
*/
class ProfileDlg : public KDialogBase, public ProfileManager
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/krename/replacedialog.h b/krename/replacedialog.h
index 7005222..4cc4f2d 100644
--- a/krename/replacedialog.h
+++ b/krename/replacedialog.h
@@ -35,7 +35,7 @@ class TQListViewItem;
class TDEListView;
class ReplaceDialog : public KDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/krename/tabs.h b/krename/tabs.h
index 8c04f9f..16118f0 100644
--- a/krename/tabs.h
+++ b/krename/tabs.h
@@ -29,7 +29,7 @@ class TQRect;
class TQString;
class TQTabWidget;
class tabs : public TQDialog {
- Q_OBJECT
+ TQ_OBJECT
public:
tabs(KRenameImpl* impl, TQRect r, TQWidget *parent=0, const char *name=0);
diff --git a/krename/threadedlister.h b/krename/threadedlister.h
index e99af30..b0c12b1 100644
--- a/krename/threadedlister.h
+++ b/krename/threadedlister.h
@@ -49,7 +49,7 @@ class FileList : public TQPtrList<KFileItem> {
class ThreadedLister : public TQObject, public TQThread
{
- Q_OBJECT
+ TQ_OBJECT
public:
ThreadedLister( TQMutex* mutex, unsigned int* counter, KMyListBox* list );
diff --git a/krename/translitplugin.h b/krename/translitplugin.h
index 017edec..cd95a05 100644
--- a/krename/translitplugin.h
+++ b/krename/translitplugin.h
@@ -34,7 +34,7 @@
@author Dominik Seichter
*/
class TranslitPlugin : public Plugin {
- Q_OBJECT
+ TQ_OBJECT
public:
const TQString getName() const;
diff --git a/krename/undodialog.h b/krename/undodialog.h
index a33c1bd..da549c3 100644
--- a/krename/undodialog.h
+++ b/krename/undodialog.h
@@ -30,7 +30,7 @@ class TQGridLayout;
class TQLabel;
class UndoDialog : public KDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
UndoDialog( TQWidget* parent = 0 );
diff --git a/krename/wizard.h b/krename/wizard.h
index 2fb6c12..93c9d0c 100644
--- a/krename/wizard.h
+++ b/krename/wizard.h
@@ -31,7 +31,7 @@ class TQVBoxLayout;
class TQWidget;
class wizard : public KWizard
{
- Q_OBJECT
+ TQ_OBJECT
public: