summaryrefslogtreecommitdiffstats
path: root/kexi/plugins/reports
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-17 16:00:39 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-17 16:00:39 -0600
commit2f8f2b51ac004c1325dd8c3c2a24d3fec62450f0 (patch)
treeb2a50806758f457480546bccb342017d9c971bd8 /kexi/plugins/reports
parent3464ad940b78776e534eded37c3ae842cae52ad8 (diff)
downloadkoffice-2f8f2b51ac004c1325dd8c3c2a24d3fec62450f0.tar.gz
koffice-2f8f2b51ac004c1325dd8c3c2a24d3fec62450f0.zip
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'kexi/plugins/reports')
-rw-r--r--kexi/plugins/reports/kexireportfactory.h2
-rw-r--r--kexi/plugins/reports/kexireportform.h2
-rw-r--r--kexi/plugins/reports/kexireportpart.h2
-rw-r--r--kexi/plugins/reports/kexireportview.h4
-rw-r--r--kexi/plugins/reports/reportwidgets.h8
5 files changed, 9 insertions, 9 deletions
diff --git a/kexi/plugins/reports/kexireportfactory.h b/kexi/plugins/reports/kexireportfactory.h
index e7c5f13a..65f5764d 100644
--- a/kexi/plugins/reports/kexireportfactory.h
+++ b/kexi/plugins/reports/kexireportfactory.h
@@ -26,7 +26,7 @@
class KexiReportFactory : public KFormDesigner::WidgetFactory
{
Q_OBJECT
- TQ_OBJECT
+
public:
KexiReportFactory(TQObject *parent, const char *name, const TQStringList &args);
diff --git a/kexi/plugins/reports/kexireportform.h b/kexi/plugins/reports/kexireportform.h
index 7898ec98..64ede057 100644
--- a/kexi/plugins/reports/kexireportform.h
+++ b/kexi/plugins/reports/kexireportform.h
@@ -30,7 +30,7 @@
class KEXIREPORTUTILS_EXPORT KexiReportForm : public TQWidget, public KFormDesigner::FormWidget
{
Q_OBJECT
- TQ_OBJECT
+
public:
KexiReportForm(TQWidget *parent, const char *name="kexi_dbform");
diff --git a/kexi/plugins/reports/kexireportpart.h b/kexi/plugins/reports/kexireportpart.h
index 47f9d4ef..d56da3ba 100644
--- a/kexi/plugins/reports/kexireportpart.h
+++ b/kexi/plugins/reports/kexireportpart.h
@@ -42,7 +42,7 @@ namespace KexiDB
class KEXIREPORTUTILS_EXPORT KexiReportPart : public KexiPart::Part
{
Q_OBJECT
- TQ_OBJECT
+
public:
KexiReportPart(TQObject *parent, const char *name, const TQStringList &);
diff --git a/kexi/plugins/reports/kexireportview.h b/kexi/plugins/reports/kexireportview.h
index df4b3190..794fa49c 100644
--- a/kexi/plugins/reports/kexireportview.h
+++ b/kexi/plugins/reports/kexireportview.h
@@ -34,7 +34,7 @@ class KexiReportForm;
class KEXIREPORTUTILS_EXPORT KexiReportScrollView : public KexiScrollView
{
Q_OBJECT
- TQ_OBJECT
+
public:
KexiReportScrollView(TQWidget *parent, bool preview);
@@ -63,7 +63,7 @@ class KEXIREPORTUTILS_EXPORT KexiReportScrollView : public KexiScrollView
class KEXIREPORTUTILS_EXPORT KexiReportView : public KexiViewBase
{
Q_OBJECT
- TQ_OBJECT
+
public:
enum ResizeMode {
diff --git a/kexi/plugins/reports/reportwidgets.h b/kexi/plugins/reports/reportwidgets.h
index 1452f41e..4cfb182a 100644
--- a/kexi/plugins/reports/reportwidgets.h
+++ b/kexi/plugins/reports/reportwidgets.h
@@ -34,7 +34,7 @@ using KFormDesigner::Form;
class KexiSubReport : public TQScrollView
{
Q_OBJECT
- TQ_OBJECT
+
TQ_PROPERTY(TQString reportName READ reportName WRITE setReportName DESIGNABLE true);
public:
@@ -56,7 +56,7 @@ class KexiSubReport : public TQScrollView
class Label : public TQLabel
{
Q_OBJECT
- TQ_OBJECT
+
public:
Label(const TQString &text, TQWidget *parent, const char *name);
@@ -67,7 +67,7 @@ class Label : public TQLabel
class PicLabel : public TQLabel
{
Q_OBJECT
- TQ_OBJECT
+
public:
PicLabel(const TQPixmap &pix, TQWidget *parent, const char *name);
@@ -80,7 +80,7 @@ class PicLabel : public TQLabel
class ReportLine : public TQWidget
{
Q_OBJECT
- TQ_OBJECT
+
TQ_PROPERTY(ReportLineStyle lineStyle READ lineStyle WRITE setLineStyle)
TQ_PROPERTY(int lineWidth READ lineWidth WRITE setLineWidth)
TQ_PROPERTY(TQColor color READ color WRITE setColor)