summaryrefslogtreecommitdiffstats
path: root/kexi/plugins/forms/widgets
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 13:37:04 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 13:37:04 +0900
commitcb59219281a9666896ee96b02a487bbc0206082d (patch)
tree75f3ebf2b90d7d8d2dc4b3c7af59601acede5ebb /kexi/plugins/forms/widgets
parenta34711af5e9f617dbf46f5c0383ad8f3fa04cd6d (diff)
downloadkoffice-cb59219281a9666896ee96b02a487bbc0206082d.tar.gz
koffice-cb59219281a9666896ee96b02a487bbc0206082d.zip
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kexi/plugins/forms/widgets')
-rw-r--r--kexi/plugins/forms/widgets/kexidbautofield.h2
-rw-r--r--kexi/plugins/forms/widgets/kexidbcheckbox.h2
-rw-r--r--kexi/plugins/forms/widgets/kexidbcombobox.h2
-rw-r--r--kexi/plugins/forms/widgets/kexidbdateedit.h2
-rw-r--r--kexi/plugins/forms/widgets/kexidbdatetimeedit.h2
-rw-r--r--kexi/plugins/forms/widgets/kexidbdoublespinbox.h2
-rw-r--r--kexi/plugins/forms/widgets/kexidbform.h2
-rw-r--r--kexi/plugins/forms/widgets/kexidbimagebox.h2
-rw-r--r--kexi/plugins/forms/widgets/kexidbintspinbox.h2
-rw-r--r--kexi/plugins/forms/widgets/kexidblabel.h2
-rw-r--r--kexi/plugins/forms/widgets/kexidblineedit.h2
-rw-r--r--kexi/plugins/forms/widgets/kexidbsubform.h2
-rw-r--r--kexi/plugins/forms/widgets/kexidbtextedit.h2
-rw-r--r--kexi/plugins/forms/widgets/kexidbtimeedit.h2
-rw-r--r--kexi/plugins/forms/widgets/kexiframe.h2
-rw-r--r--kexi/plugins/forms/widgets/kexipushbutton.h2
16 files changed, 16 insertions, 16 deletions
diff --git a/kexi/plugins/forms/widgets/kexidbautofield.h b/kexi/plugins/forms/widgets/kexidbautofield.h
index b1ba23f3..a45289d0 100644
--- a/kexi/plugins/forms/widgets/kexidbautofield.h
+++ b/kexi/plugins/forms/widgets/kexidbautofield.h
@@ -39,7 +39,7 @@ class KEXIFORMUTILS_EXPORT KexiDBAutoField :
public KFormDesigner::DesignTimeDynamicChildWidgetHandler,
public KFormDesigner::WidgetWithSubpropertiesInterface
{
- Q_OBJECT
+ TQ_OBJECT
//'caption' is uncovered now TQ_PROPERTY(TQString labelCaption READ caption WRITE setCaption DESIGNABLE true)
TQ_OVERRIDE(TQString caption READ caption WRITE setCaption DESIGNABLE true)
diff --git a/kexi/plugins/forms/widgets/kexidbcheckbox.h b/kexi/plugins/forms/widgets/kexidbcheckbox.h
index ecf0da2f..9e14ee92 100644
--- a/kexi/plugins/forms/widgets/kexidbcheckbox.h
+++ b/kexi/plugins/forms/widgets/kexidbcheckbox.h
@@ -27,7 +27,7 @@
//! @short A db-aware check box
class KEXIFORMUTILS_EXPORT KexiDBCheckBox : public TQCheckBox, public KexiFormDataItemInterface
{
- Q_OBJECT
+ TQ_OBJECT
TQ_PROPERTY(TQString dataSource READ dataSource WRITE setDataSource DESIGNABLE true)
TQ_PROPERTY(TQCString dataSourceMimeType READ dataSourceMimeType WRITE setDataSourceMimeType DESIGNABLE true)
diff --git a/kexi/plugins/forms/widgets/kexidbcombobox.h b/kexi/plugins/forms/widgets/kexidbcombobox.h
index c38027f8..22e10d2a 100644
--- a/kexi/plugins/forms/widgets/kexidbcombobox.h
+++ b/kexi/plugins/forms/widgets/kexidbcombobox.h
@@ -34,7 +34,7 @@
class KEXIFORMUTILS_EXPORT KexiDBComboBox :
public KexiDBAutoField, public KexiComboBoxBase
{
- Q_OBJECT
+ TQ_OBJECT
TQ_PROPERTY( bool editable READ isEditable WRITE setEditable )
//properties from KexiDBAutoField that should not be visible:
diff --git a/kexi/plugins/forms/widgets/kexidbdateedit.h b/kexi/plugins/forms/widgets/kexidbdateedit.h
index 638b985a..d48bb07e 100644
--- a/kexi/plugins/forms/widgets/kexidbdateedit.h
+++ b/kexi/plugins/forms/widgets/kexidbdateedit.h
@@ -31,7 +31,7 @@ class TQDateTimeEditor;
//! @short A db-aware date editor
class KEXIFORMUTILS_EXPORT KexiDBDateEdit : public TQWidget, public KexiFormDataItemInterface
{
- Q_OBJECT
+ TQ_OBJECT
TQ_PROPERTY(TQString dataSource READ dataSource WRITE setDataSource DESIGNABLE true)
TQ_PROPERTY(TQCString dataSourceMimeType READ dataSourceMimeType WRITE setDataSourceMimeType DESIGNABLE true)
diff --git a/kexi/plugins/forms/widgets/kexidbdatetimeedit.h b/kexi/plugins/forms/widgets/kexidbdatetimeedit.h
index a56bb30e..195873d9 100644
--- a/kexi/plugins/forms/widgets/kexidbdatetimeedit.h
+++ b/kexi/plugins/forms/widgets/kexidbdatetimeedit.h
@@ -31,7 +31,7 @@ class TDEPopupMenu;
//! @short A db-aware datetime editor
class KEXIFORMUTILS_EXPORT KexiDBDateTimeEdit : public TQWidget, public KexiFormDataItemInterface
{
- Q_OBJECT
+ TQ_OBJECT
TQ_PROPERTY(TQString dataSource READ dataSource WRITE setDataSource DESIGNABLE true)
TQ_PROPERTY(TQCString dataSourceMimeType READ dataSourceMimeType WRITE setDataSourceMimeType DESIGNABLE true)
diff --git a/kexi/plugins/forms/widgets/kexidbdoublespinbox.h b/kexi/plugins/forms/widgets/kexidbdoublespinbox.h
index e9af94d9..82be65bd 100644
--- a/kexi/plugins/forms/widgets/kexidbdoublespinbox.h
+++ b/kexi/plugins/forms/widgets/kexidbdoublespinbox.h
@@ -28,7 +28,7 @@
//! @short A db-aware int spin box
class KEXIFORMUTILS_EXPORT KexiDBDoubleSpinBox : public KDoubleSpinBox, public KexiFormDataItemInterface
{
- Q_OBJECT
+ TQ_OBJECT
TQ_PROPERTY(TQString dataSource READ dataSource WRITE setDataSource DESIGNABLE true)
TQ_PROPERTY(TQCString dataSourceMimeType READ dataSourceMimeType WRITE setDataSourceMimeType DESIGNABLE true)
diff --git a/kexi/plugins/forms/widgets/kexidbform.h b/kexi/plugins/forms/widgets/kexidbform.h
index 90c947d2..d75143a8 100644
--- a/kexi/plugins/forms/widgets/kexidbform.h
+++ b/kexi/plugins/forms/widgets/kexidbform.h
@@ -42,7 +42,7 @@ class KEXIFORMUTILS_EXPORT KexiDBForm :
public KFormDesigner::FormWidget,
public KexiFormDataItemInterface
{
- Q_OBJECT
+ TQ_OBJECT
TQ_PROPERTY(TQString dataSource READ dataSource WRITE setDataSource DESIGNABLE true)
TQ_PROPERTY(TQCString dataSourceMimeType READ dataSourceMimeType WRITE setDataSourceMimeType DESIGNABLE true)
diff --git a/kexi/plugins/forms/widgets/kexidbimagebox.h b/kexi/plugins/forms/widgets/kexidbimagebox.h
index e7a46329..4abb9fb3 100644
--- a/kexi/plugins/forms/widgets/kexidbimagebox.h
+++ b/kexi/plugins/forms/widgets/kexidbimagebox.h
@@ -37,7 +37,7 @@ class KEXIFORMUTILS_EXPORT KexiDBImageBox :
public KexiFormDataItemInterface,
public KexiSubwidgetInterface
{
- Q_OBJECT
+ TQ_OBJECT
TQ_PROPERTY( TQString dataSource READ dataSource WRITE setDataSource )
TQ_PROPERTY( TQCString dataSourceMimeType READ dataSourceMimeType WRITE setDataSourceMimeType )
diff --git a/kexi/plugins/forms/widgets/kexidbintspinbox.h b/kexi/plugins/forms/widgets/kexidbintspinbox.h
index 9219e931..a8bc5026 100644
--- a/kexi/plugins/forms/widgets/kexidbintspinbox.h
+++ b/kexi/plugins/forms/widgets/kexidbintspinbox.h
@@ -28,7 +28,7 @@
//! @short A db-aware int spin box
class KEXIFORMUTILS_EXPORT KexiDBIntSpinBox : public KIntSpinBox, public KexiFormDataItemInterface
{
- Q_OBJECT
+ TQ_OBJECT
TQ_PROPERTY(TQString dataSource READ dataSource WRITE setDataSource DESIGNABLE true)
TQ_PROPERTY(TQCString dataSourceMimeType READ dataSourceMimeType WRITE setDataSourceMimeType DESIGNABLE true)
diff --git a/kexi/plugins/forms/widgets/kexidblabel.h b/kexi/plugins/forms/widgets/kexidblabel.h
index 0ed255d9..fd875f9e 100644
--- a/kexi/plugins/forms/widgets/kexidblabel.h
+++ b/kexi/plugins/forms/widgets/kexidblabel.h
@@ -40,7 +40,7 @@ class KexiDBInternalLabel;
@author Christian Nitschkowski, Jaroslaw Staniek
*/
class KEXIFORMUTILS_EXPORT KexiDBLabel : public TQLabel, protected KexiDBTextWidgetInterface, public KexiFormDataItemInterface {
- Q_OBJECT
+ TQ_OBJECT
TQ_PROPERTY( TQString dataSource READ dataSource WRITE setDataSource DESIGNABLE true )
TQ_PROPERTY( TQCString dataSourceMimeType READ dataSourceMimeType WRITE setDataSourceMimeType DESIGNABLE true )
diff --git a/kexi/plugins/forms/widgets/kexidblineedit.h b/kexi/plugins/forms/widgets/kexidblineedit.h
index 935a89a7..7db05205 100644
--- a/kexi/plugins/forms/widgets/kexidblineedit.h
+++ b/kexi/plugins/forms/widgets/kexidblineedit.h
@@ -46,7 +46,7 @@ class KEXIFORMUTILS_EXPORT KexiDBLineEdit :
public KexiFormDataItemInterface,
public KexiSubwidgetInterface
{
- Q_OBJECT
+ TQ_OBJECT
TQ_PROPERTY(TQString dataSource READ dataSource WRITE setDataSource DESIGNABLE true)
TQ_PROPERTY(TQCString dataSourceMimeType READ dataSourceMimeType WRITE setDataSourceMimeType DESIGNABLE true)
diff --git a/kexi/plugins/forms/widgets/kexidbsubform.h b/kexi/plugins/forms/widgets/kexidbsubform.h
index 3b5afa31..710dafe9 100644
--- a/kexi/plugins/forms/widgets/kexidbsubform.h
+++ b/kexi/plugins/forms/widgets/kexidbsubform.h
@@ -27,7 +27,7 @@
//! @short A form embedded as a widget inside other form
class KEXIFORMUTILS_EXPORT KexiDBSubForm : public TQScrollView
{
- Q_OBJECT
+ TQ_OBJECT
TQ_PROPERTY(TQString formName READ formName WRITE setFormName DESIGNABLE true)
diff --git a/kexi/plugins/forms/widgets/kexidbtextedit.h b/kexi/plugins/forms/widgets/kexidbtextedit.h
index 4cc441d0..533291cf 100644
--- a/kexi/plugins/forms/widgets/kexidbtextedit.h
+++ b/kexi/plugins/forms/widgets/kexidbtextedit.h
@@ -32,7 +32,7 @@ class KEXIFORMUTILS_EXPORT KexiDBTextEdit :
protected KexiDBTextWidgetInterface,
public KexiFormDataItemInterface
{
- Q_OBJECT
+ TQ_OBJECT
TQ_PROPERTY(TQString dataSource READ dataSource WRITE setDataSource DESIGNABLE true)
TQ_PROPERTY(TQCString dataSourceMimeType READ dataSourceMimeType WRITE setDataSourceMimeType DESIGNABLE true)
diff --git a/kexi/plugins/forms/widgets/kexidbtimeedit.h b/kexi/plugins/forms/widgets/kexidbtimeedit.h
index 3ea5cd05..8bf37b4e 100644
--- a/kexi/plugins/forms/widgets/kexidbtimeedit.h
+++ b/kexi/plugins/forms/widgets/kexidbtimeedit.h
@@ -30,7 +30,7 @@ class TQDateTimeEditor;
//! @short A db-aware time editor
class KEXIFORMUTILS_EXPORT KexiDBTimeEdit : public TQTimeEdit, public KexiFormDataItemInterface
{
- Q_OBJECT
+ TQ_OBJECT
TQ_PROPERTY(TQString dataSource READ dataSource WRITE setDataSource DESIGNABLE true)
TQ_PROPERTY(TQCString dataSourceMimeType READ dataSourceMimeType WRITE setDataSourceMimeType DESIGNABLE true)
diff --git a/kexi/plugins/forms/widgets/kexiframe.h b/kexi/plugins/forms/widgets/kexiframe.h
index 95aae487..8eac007c 100644
--- a/kexi/plugins/forms/widgets/kexiframe.h
+++ b/kexi/plugins/forms/widgets/kexiframe.h
@@ -25,7 +25,7 @@
//! @short Frame widget for Kexi forms
class KEXIFORMUTILS_EXPORT KexiFrame : public TQFrame
{
- Q_OBJECT
+ TQ_OBJECT
//todo TQ_ENUMS( Shape Shadow )
TQ_PROPERTY( TQColor frameColor READ frameColor WRITE setFrameColor DESIGNABLE true )
diff --git a/kexi/plugins/forms/widgets/kexipushbutton.h b/kexi/plugins/forms/widgets/kexipushbutton.h
index a84ccf79..ba0cd764 100644
--- a/kexi/plugins/forms/widgets/kexipushbutton.h
+++ b/kexi/plugins/forms/widgets/kexipushbutton.h
@@ -27,7 +27,7 @@
//! @short Push Button widget for Kexi forms
class KEXIFORMUTILS_EXPORT KexiPushButton : public KPushButton
{
- Q_OBJECT
+ TQ_OBJECT
TQ_PROPERTY(TQString onClickAction READ onClickAction WRITE setOnClickAction DESIGNABLE true)
TQ_PROPERTY(TQString onClickActionOption READ onClickActionOption WRITE setOnClickActionOption DESIGNABLE true)