diff options
author | Michele Calgaro <[email protected]> | 2023-07-20 12:54:36 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-07-20 12:54:36 +0900 |
commit | a1db9a471db4545c2e401ded047de5c28fc7fd21 (patch) | |
tree | 9ec32c1389bcd85f95c309fbaed5a4641d3d42d1 | |
parent | 7f127fca03e3e6e9f34d51c39fe315a8e0d6d520 (diff) | |
download | kasablanca-a1db9a471db4545c2e401ded047de5c28fc7fd21.tar.gz kasablanca-a1db9a471db4545c2e401ded047de5c28fc7fd21.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r-- | src/bookmarkdialog.h | 2 | ||||
-rw-r--r-- | src/customconnectdialog.h | 2 | ||||
-rw-r--r-- | src/eventhandler.h | 2 | ||||
-rw-r--r-- | src/fileexistsdialog.h | 2 | ||||
-rw-r--r-- | src/ftpsession.h | 2 | ||||
-rw-r--r-- | src/kasablanca.h | 2 | ||||
-rw-r--r-- | src/kbtaskview.h | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/src/bookmarkdialog.h b/src/bookmarkdialog.h index 0621fcc..0b62ae1 100644 --- a/src/bookmarkdialog.h +++ b/src/bookmarkdialog.h @@ -33,7 +33,7 @@ using namespace std; */ class BookmarkDialog : public KDialogBase { -Q_OBJECT +TQ_OBJECT public: BookmarkDialog(TQWidget *parent = 0, const char *name = 0); ~BookmarkDialog(); diff --git a/src/customconnectdialog.h b/src/customconnectdialog.h index beff1e7..1458c43 100644 --- a/src/customconnectdialog.h +++ b/src/customconnectdialog.h @@ -30,7 +30,7 @@ class KbSiteInfo; class CustomConnectDialog : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: CustomConnectDialog(TQWidget *parent=0, const char *name=0); ~CustomConnectDialog(); diff --git a/src/eventhandler.h b/src/eventhandler.h index df29b07..a49ee36 100644 --- a/src/eventhandler.h +++ b/src/eventhandler.h @@ -39,7 +39,7 @@ typedef pair<filist, filist> contentpair; class EventHandler : public TQObject { -Q_OBJECT +TQ_OBJECT public: EventHandler(TQObject *parent = 0, const char *name = 0); ~EventHandler(); diff --git a/src/fileexistsdialog.h b/src/fileexistsdialog.h index 937162c..61a8928 100644 --- a/src/fileexistsdialog.h +++ b/src/fileexistsdialog.h @@ -26,7 +26,7 @@ */ class FileExistsDialog : public KasablancaFileExistsDialog { - Q_OBJECT + TQ_OBJECT public: FileExistsDialog(TQWidget *parent=0, const char *name=0); ~FileExistsDialog(); diff --git a/src/ftpsession.h b/src/ftpsession.h index 58914eb..243bf02 100644 --- a/src/ftpsession.h +++ b/src/ftpsession.h @@ -46,7 +46,7 @@ typedef pair<TQString, bool> logentries; */ class FtpSession : public TQObject { -Q_OBJECT +TQ_OBJECT public: enum filecheck { diff --git a/src/kasablanca.h b/src/kasablanca.h index 41d6bf8..827940c 100644 --- a/src/kasablanca.h +++ b/src/kasablanca.h @@ -55,7 +55,7 @@ using namespace std; class Kasablanca : public TDEMainWindow { - Q_OBJECT + TQ_OBJECT public: enum RightClickMenu { diff --git a/src/kbtaskview.h b/src/kbtaskview.h index e2aab6b..9aeee4f 100644 --- a/src/kbtaskview.h +++ b/src/kbtaskview.h @@ -19,7 +19,7 @@ */ class KbTaskView : public TDEListView { -Q_OBJECT +TQ_OBJECT public: KbTaskView(TQWidget *parent = 0, const char *name = 0); ~KbTaskView(); |