summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqsqlpropertymap.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-23 12:42:20 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-24 20:14:25 +0900
commitd73937a9f779e2aafa6c392f94c9c29aa32b78fd (patch)
treee2c52ad435e8cca696acae34b1f451e934675a64 /doc/man/man3/tqsqlpropertymap.3qt
parenteb42871e999672a8fad5793733c58be05928c8ea (diff)
downloadtqt3-d73937a9f779e2aafa6c392f94c9c29aa32b78fd.tar.gz
tqt3-d73937a9f779e2aafa6c392f94c9c29aa32b78fd.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* versionr14.1.1
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit b35e0845dc9b3c8b9a5e52a682c769f383933fae)
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"