From fce92533f86b9952f0c9cac6ca97f89c0fe6c39c Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 20 Jul 2023 15:06:30 +0900 Subject: Replace Q_OBJECT with TQ_OBJECT Signed-off-by: Michele Calgaro --- kghostview/fullscreenfilter.h | 2 +- kghostview/infodialog.h | 2 +- kghostview/kdscerrordialog.h | 2 +- kghostview/kgv_miniwidget.h | 2 +- kghostview/kgv_view.h | 6 +++--- kghostview/kgvdocument.h | 4 ++-- kghostview/kgvmainwidget.h | 2 +- kghostview/kgvpageview.h | 2 +- kghostview/kgvshell.h | 2 +- kghostview/kpswidget.h | 2 +- kghostview/logwindow.h | 2 +- kghostview/marklist.h | 4 ++-- kghostview/scrollbox.h | 2 +- kghostview/thumbnailservice.h | 2 +- kghostview/viewcontrol.h | 2 +- 15 files changed, 19 insertions(+), 19 deletions(-) (limited to 'kghostview') diff --git a/kghostview/fullscreenfilter.h b/kghostview/fullscreenfilter.h index a9d18366..7125e506 100644 --- a/kghostview/fullscreenfilter.h +++ b/kghostview/fullscreenfilter.h @@ -27,7 +27,7 @@ class KGVShell; * key/mouse handling related to full-screen mode without bloating further KGVPart */ class FullScreenFilter : public TQObject { - Q_OBJECT + TQ_OBJECT public: FullScreenFilter( KGVShell& parent ); diff --git a/kghostview/infodialog.h b/kghostview/infodialog.h index 65d973f3..4f01dca6 100644 --- a/kghostview/infodialog.h +++ b/kghostview/infodialog.h @@ -26,7 +26,7 @@ class TQLabel; class InfoDialog : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: diff --git a/kghostview/kdscerrordialog.h b/kghostview/kdscerrordialog.h index 97d311e5..a753f9d8 100644 --- a/kghostview/kdscerrordialog.h +++ b/kghostview/kdscerrordialog.h @@ -41,7 +41,7 @@ private: class KDSCErrorDialog : public KDialog, public KDSCErrorHandler { - Q_OBJECT + TQ_OBJECT public: diff --git a/kghostview/kgv_miniwidget.h b/kghostview/kgv_miniwidget.h index 2e370153..dcbcb305 100644 --- a/kghostview/kgv_miniwidget.h +++ b/kghostview/kgv_miniwidget.h @@ -37,7 +37,7 @@ class MarkList; class KGVMiniWidget : public TQObject { - Q_OBJECT + TQ_OBJECT public: diff --git a/kghostview/kgv_view.h b/kghostview/kgv_view.h index 04365ad4..3859b675 100644 --- a/kghostview/kgv_view.h +++ b/kghostview/kgv_view.h @@ -54,7 +54,7 @@ class ScrollBox; class KGVPart: public KParts::ReadOnlyPart { - Q_OBJECT + TQ_OBJECT public: KGVPart( TQWidget* parentWidget, const char* widgetName, @@ -230,7 +230,7 @@ private: class KGVBrowserExtension : public KParts::BrowserExtension { - Q_OBJECT + TQ_OBJECT friend class KGVPart; // emits our signals public: @@ -244,7 +244,7 @@ public slots: class KGVRun : public KRun { - Q_OBJECT + TQ_OBJECT public: diff --git a/kghostview/kgvdocument.h b/kghostview/kgvdocument.h index 5076b78b..2de2fc69 100644 --- a/kghostview/kgvdocument.h +++ b/kghostview/kgvdocument.h @@ -33,7 +33,7 @@ class Pdf2dsc; class KGVDocument : public TQObject { - Q_OBJECT + TQ_OBJECT public: @@ -159,7 +159,7 @@ private: class Pdf2dsc : public TQObject { - Q_OBJECT + TQ_OBJECT public: diff --git a/kghostview/kgvmainwidget.h b/kghostview/kgvmainwidget.h index f18856b1..78965728 100644 --- a/kghostview/kgvmainwidget.h +++ b/kghostview/kgvmainwidget.h @@ -25,7 +25,7 @@ class KURL; class KGVMainWidget : public TQWidget { - Q_OBJECT + TQ_OBJECT public: diff --git a/kghostview/kgvpageview.h b/kghostview/kgvpageview.h index b7c4cd09..dadbbfe2 100644 --- a/kghostview/kgvpageview.h +++ b/kghostview/kgvpageview.h @@ -29,7 +29,7 @@ */ class KGVPageView : public TQScrollView { - Q_OBJECT + TQ_OBJECT public: diff --git a/kghostview/kgvshell.h b/kghostview/kgvshell.h index 70879a4f..98915ec6 100644 --- a/kghostview/kgvshell.h +++ b/kghostview/kgvshell.h @@ -37,7 +37,7 @@ class FullScreenFilter; class KDE_EXPORT KGVShell : public KParts::MainWindow { - Q_OBJECT + TQ_OBJECT public: diff --git a/kghostview/kpswidget.h b/kghostview/kpswidget.h index 0dd556fa..d1c41c25 100644 --- a/kghostview/kpswidget.h +++ b/kghostview/kpswidget.h @@ -45,7 +45,7 @@ class MessagesDialog; class KPSWidget : public TQWidget { - Q_OBJECT + TQ_OBJECT public: diff --git a/kghostview/logwindow.h b/kghostview/logwindow.h index 8f3b2f11..daa9f03d 100644 --- a/kghostview/logwindow.h +++ b/kghostview/logwindow.h @@ -27,7 +27,7 @@ class KURLLabel; class LogWindow : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: diff --git a/kghostview/marklist.h b/kghostview/marklist.h index 6ccc5800..e8b4f54c 100644 --- a/kghostview/marklist.h +++ b/kghostview/marklist.h @@ -26,7 +26,7 @@ class KGVMiniWidget; class MarkListItem : public TQWidget { - Q_OBJECT + TQ_OBJECT public: MarkListItem( TQWidget *parent, const TQString &text, const TQString &tip, const TQColor &color, KGVMiniWidget*, int ); @@ -54,7 +54,7 @@ private: class MarkList: public TQTable { - Q_OBJECT + TQ_OBJECT public: diff --git a/kghostview/scrollbox.h b/kghostview/scrollbox.h index 5cdd96b0..fa0a4441 100644 --- a/kghostview/scrollbox.h +++ b/kghostview/scrollbox.h @@ -24,7 +24,7 @@ class ScrollBox: public TQFrame { - Q_OBJECT + TQ_OBJECT public: diff --git a/kghostview/thumbnailservice.h b/kghostview/thumbnailservice.h index 6c861e77..edc33d4a 100644 --- a/kghostview/thumbnailservice.h +++ b/kghostview/thumbnailservice.h @@ -29,7 +29,7 @@ class KGVMiniWidget; class TQTimer; class ThumbnailService : public TQObject { - Q_OBJECT + TQ_OBJECT public: ThumbnailService( KGVMiniWidget* parent, const char* name = 0 ); diff --git a/kghostview/viewcontrol.h b/kghostview/viewcontrol.h index 3e4a24b9..93db268f 100644 --- a/kghostview/viewcontrol.h +++ b/kghostview/viewcontrol.h @@ -8,7 +8,7 @@ class TQPushButton; class ViewControl : public TQDialog { - Q_OBJECT + TQ_OBJECT public: ViewControl( TQWidget *parent, const char *name ); -- cgit v1.2.1