diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 13:37:04 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-22 10:29:56 +0900 |
commit | ef14fba42c78a96d905c42632a62dc11f353b1c3 (patch) | |
tree | ad32afdaaa32b215fe8b9be49fbf578d30a556d3 /kexi/plugins/reports | |
parent | 8b5a8460b388924f71bef71fc0dc4862e8c146d2 (diff) | |
download | koffice-ef14fba4.tar.gz koffice-ef14fba4.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit cb59219281a9666896ee96b02a487bbc0206082d)
Diffstat (limited to 'kexi/plugins/reports')
-rw-r--r-- | kexi/plugins/reports/kexireportfactory.h | 2 | ||||
-rw-r--r-- | kexi/plugins/reports/kexireportform.h | 2 | ||||
-rw-r--r-- | kexi/plugins/reports/kexireportpart.h | 2 | ||||
-rw-r--r-- | kexi/plugins/reports/kexireportview.h | 4 | ||||
-rw-r--r-- | kexi/plugins/reports/reportwidgets.h | 8 |
5 files changed, 9 insertions, 9 deletions
diff --git a/kexi/plugins/reports/kexireportfactory.h b/kexi/plugins/reports/kexireportfactory.h index 65f5764d3..69dd7bdd2 100644 --- a/kexi/plugins/reports/kexireportfactory.h +++ b/kexi/plugins/reports/kexireportfactory.h @@ -25,7 +25,7 @@ //! Kexi Factory (DB widgets + subform) class KexiReportFactory : public KFormDesigner::WidgetFactory { - Q_OBJECT + TQ_OBJECT public: diff --git a/kexi/plugins/reports/kexireportform.h b/kexi/plugins/reports/kexireportform.h index 64ede0576..e310ab026 100644 --- a/kexi/plugins/reports/kexireportform.h +++ b/kexi/plugins/reports/kexireportform.h @@ -29,7 +29,7 @@ //! The report top widget class KEXIREPORTUTILS_EXPORT KexiReportForm : public TQWidget, public KFormDesigner::FormWidget { - Q_OBJECT + TQ_OBJECT public: diff --git a/kexi/plugins/reports/kexireportpart.h b/kexi/plugins/reports/kexireportpart.h index d56da3bae..347b90934 100644 --- a/kexi/plugins/reports/kexireportpart.h +++ b/kexi/plugins/reports/kexireportpart.h @@ -41,7 +41,7 @@ namespace KexiDB It just creates a \ref KexiReportView. See there for most of code. */ class KEXIREPORTUTILS_EXPORT KexiReportPart : public KexiPart::Part { - Q_OBJECT + TQ_OBJECT public: diff --git a/kexi/plugins/reports/kexireportview.h b/kexi/plugins/reports/kexireportview.h index 794fa49cf..413b8cd88 100644 --- a/kexi/plugins/reports/kexireportview.h +++ b/kexi/plugins/reports/kexireportview.h @@ -33,7 +33,7 @@ class KexiReportForm; class KEXIREPORTUTILS_EXPORT KexiReportScrollView : public KexiScrollView { - Q_OBJECT + TQ_OBJECT public: @@ -62,7 +62,7 @@ class KEXIREPORTUTILS_EXPORT KexiReportScrollView : public KexiScrollView (preview == false in constructor). */ class KEXIREPORTUTILS_EXPORT KexiReportView : public KexiViewBase { - Q_OBJECT + TQ_OBJECT public: diff --git a/kexi/plugins/reports/reportwidgets.h b/kexi/plugins/reports/reportwidgets.h index 4cfb182af..d676e527b 100644 --- a/kexi/plugins/reports/reportwidgets.h +++ b/kexi/plugins/reports/reportwidgets.h @@ -33,7 +33,7 @@ using KFormDesigner::Form; //! A form embedded as a widget inside other form class KexiSubReport : public TQScrollView { - Q_OBJECT + TQ_OBJECT TQ_PROPERTY(TQString reportName READ reportName WRITE setReportName DESIGNABLE true); @@ -55,7 +55,7 @@ class KexiSubReport : public TQScrollView //! A simple label inside a report class Label : public TQLabel { - Q_OBJECT + TQ_OBJECT public: @@ -66,7 +66,7 @@ class Label : public TQLabel //! A simple picture label inside a report class PicLabel : public TQLabel { - Q_OBJECT + TQ_OBJECT public: @@ -79,7 +79,7 @@ class PicLabel : public TQLabel //! A line class ReportLine : public TQWidget { - Q_OBJECT + TQ_OBJECT TQ_PROPERTY(ReportLineStyle lineStyle READ lineStyle WRITE setLineStyle) TQ_PROPERTY(int lineWidth READ lineWidth WRITE setLineWidth) |