diff options
Diffstat (limited to 'doc/html/sql.html')
-rw-r--r-- | doc/html/sql.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/sql.html b/doc/html/sql.html index c57f7ab2a..4389fe12b 100644 --- a/doc/html/sql.html +++ b/doc/html/sql.html @@ -1117,7 +1117,7 @@ differences. <pre> class FormDialog : public <a href="ntqdialog.html">TQDialog</a> { - <a href="metaobjects.html#Q_OBJECT">Q_OBJECT</a> + <a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a> public: FormDialog(); ~FormDialog(); @@ -1216,7 +1216,7 @@ we will only cover the differences here. The full source is in <a href="sql-over <pre> class CustomEdit : public <a href="ntqlineedit.html">TQLineEdit</a> { - Q_OBJECT + TQ_OBJECT Q_PROPERTY( TQString upperLine READ upperLine WRITE setUpperLine ) public: CustomEdit( <a href="ntqwidget.html">TQWidget</a> *parent=0, const char *name=0 ); @@ -1297,7 +1297,7 @@ can use a custom editor. <pre> class StatusPicker : public <a href="ntqcombobox.html">TQComboBox</a> { - Q_OBJECT + TQ_OBJECT Q_PROPERTY( int statusid READ statusId WRITE setStatusId ) public: StatusPicker( <a href="ntqwidget.html">TQWidget</a> *parent=0, const char *name=0 ); @@ -1314,7 +1314,7 @@ from the combobox's indexes so we create a <a href="ntqmap.html">TQMap</a> to ma to/from the statusids that we will list in the combobox. <p> <pre> class CustomSqlEditorFactory : public <a href="ntqsqleditorfactory.html">TQSqlEditorFactory</a> { - Q_OBJECT + TQ_OBJECT public: <a href="ntqwidget.html">TQWidget</a> *createEditor( <a href="ntqwidget.html">TQWidget</a> *parent, const <a href="ntqsqlfield.html">TQSqlField</a> *field ); }; @@ -1376,7 +1376,7 @@ to subclass TQDataTable and reimplement the paintField() function. <pre> class CustomTable : public <a href="ntqdatatable.html">TQDataTable</a> { - Q_OBJECT + TQ_OBJECT public: CustomTable( <a href="ntqsqlcursor.html">TQSqlCursor</a> *cursor, bool autoPopulate = FALSE, |