summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqsqlpropertymap.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-09-23 12:42:20 +0900
committerMichele Calgaro <[email protected]>2023-09-23 12:42:20 +0900
commitb35e0845dc9b3c8b9a5e52a682c769f383933fae (patch)
treee4eeca8f6fe0ca87e774be98eabf89b4c7fca347 /doc/man/man3/tqsqlpropertymap.3qt
parent1ba13366a7a377d50b9e8df9044ce11d8209f98c (diff)
downloadtqt3-b35e0845dc9b3c8b9a5e52a682c769f383933fae.tar.gz
tqt3-b35e0845dc9b3c8b9a5e52a682c769f383933fae.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/man/man3/tqsqlpropertymap.3qt')
-rw-r--r--doc/man/man3/tqsqlpropertymap.3qt16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/man/man3/tqsqlpropertymap.3qt b/doc/man/man3/tqsqlpropertymap.3qt
index e736fdb72..3857f1303 100644
--- a/doc/man/man3/tqsqlpropertymap.3qt
+++ b/doc/man/man3/tqsqlpropertymap.3qt
@@ -20,16 +20,16 @@ QSqlPropertyMap \- Used to map widgets to SQL fields
.BI "virtual \fB~QSqlPropertyMap\fR ()"
.br
.ti -1c
-.BI "QVariant \fBproperty\fR ( QWidget * widget )"
+.BI "QVariant \fBproperty\fR ( TQWidget * widget )"
.br
.ti -1c
-.BI "virtual void \fBsetProperty\fR ( QWidget * widget, const QVariant & value )"
+.BI "virtual void \fBsetProperty\fR ( TQWidget * widget, const QVariant & value )"
.br
.ti -1c
-.BI "void \fBinsert\fR ( const QString & classname, const QString & property )"
+.BI "void \fBinsert\fR ( const TQString & classname, const TQString & property )"
.br
.ti -1c
-.BI "void \fBremove\fR ( const QString & classname )"
+.BI "void \fBremove\fR ( const TQString & classname )"
.br
.in -1c
.SS "Static Public Members"
@@ -133,17 +133,17 @@ Destroys the QSqlPropertyMap.
Note that if the QSqlPropertyMap is installed with installPropertyMap() the object it was installed into, e.g. the QSqlForm, takes ownership and will delete the QSqlPropertyMap when necessary.
.SH "QSqlPropertyMap * QSqlPropertyMap::defaultMap ()\fC [static]\fR"
Returns the application global QSqlPropertyMap.
-.SH "void QSqlPropertyMap::insert ( const QString & classname, const QString & property )"
+.SH "void QSqlPropertyMap::insert ( const TQString & classname, const TQString & property )"
Insert a new classname/property pair, which is used for custom SQL field editors. There \fImust\fR be a \fCTQ_PROPERTY\fR clause in the \fIclassname\fR class declaration for the \fIproperty\fR.
.PP
Example: sql/overview/custom1/main.cpp.
.SH "void QSqlPropertyMap::installDefaultMap ( QSqlPropertyMap * map )\fC [static]\fR"
Replaces the global default property map with \fImap\fR. All QDataTable and QSqlForm instantiations will use this new map for inserting and extracting values to and from editors. \fIQSqlPropertyMap takes ownership of &#92;a map, and destroys it when it is no longer needed.\fR
-.SH "QVariant QSqlPropertyMap::property ( QWidget * widget )"
+.SH "QVariant QSqlPropertyMap::property ( TQWidget * widget )"
Returns the mapped property of \fIwidget\fR as a QVariant.
-.SH "void QSqlPropertyMap::remove ( const QString & classname )"
+.SH "void QSqlPropertyMap::remove ( const TQString & classname )"
Removes \fIclassname\fR from the map.
-.SH "void QSqlPropertyMap::setProperty ( QWidget * widget, const QVariant & value )\fC [virtual]\fR"
+.SH "void QSqlPropertyMap::setProperty ( TQWidget * widget, const QVariant & value )\fC [virtual]\fR"
Sets the property of \fIwidget\fR to \fIvalue\fR.
.SH "SEE ALSO"