diff options
Diffstat (limited to 'doc/man/man3/qvariant.3qt')
-rw-r--r-- | doc/man/man3/qvariant.3qt | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/man/man3/qvariant.3qt b/doc/man/man3/qvariant.3qt index cc1c0b38c..99bd38a83 100644 --- a/doc/man/man3/qvariant.3qt +++ b/doc/man/man3/qvariant.3qt @@ -119,10 +119,10 @@ QVariant \- Acts like a union for the most common Qt data types .BI "\fBQVariant\fR ( uint val )" .br .ti -1c -.BI "\fBQVariant\fR ( Q_LLONG val )" +.BI "\fBQVariant\fR ( TQ_LLONG val )" .br .ti -1c -.BI "\fBQVariant\fR ( Q_ULLONG val )" +.BI "\fBQVariant\fR ( TQ_ULLONG val )" .br .ti -1c .BI "\fBQVariant\fR ( bool val, int )" @@ -245,10 +245,10 @@ QVariant \- Acts like a union for the most common Qt data types .BI "uint \fBtoUInt\fR ( bool * ok = 0 ) const" .br .ti -1c -.BI "Q_LLONG \fBtoLongLong\fR ( bool * ok = 0 ) const" +.BI "TQ_LLONG \fBtoLongLong\fR ( bool * ok = 0 ) const" .br .ti -1c -.BI "Q_ULLONG \fBtoULongLong\fR ( bool * ok = 0 ) const" +.BI "TQ_ULLONG \fBtoULongLong\fR ( bool * ok = 0 ) const" .br .ti -1c .BI "bool \fBtoBool\fR () const" @@ -368,10 +368,10 @@ QVariant \- Acts like a union for the most common Qt data types .BI "uint & \fBasUInt\fR ()" .br .ti -1c -.BI "Q_LLONG & \fBasLongLong\fR ()" +.BI "TQ_LLONG & \fBasLongLong\fR ()" .br .ti -1c -.BI "Q_ULLONG & \fBasULongLong\fR ()" +.BI "TQ_ULLONG & \fBasULongLong\fR ()" .br .ti -1c .BI "bool & \fBasBool\fR ()" @@ -626,9 +626,9 @@ Constructs a new variant with a map of QVariants, \fIval\fR. Constructs a new variant with an integer value, \fIval\fR. .SH "QVariant::QVariant ( uint val )" Constructs a new variant with an unsigned integer value, \fIval\fR. -.SH "QVariant::QVariant ( Q_LLONG val )" +.SH "QVariant::QVariant ( TQ_LLONG val )" Constructs a new variant with a long long integer value, \fIval\fR. -.SH "QVariant::QVariant ( Q_ULLONG val )" +.SH "QVariant::QVariant ( TQ_ULLONG val )" Constructs a new variant with an unsigned long long integer value, \fIval\fR. .SH "QVariant::~QVariant ()" Destroys the QVariant and the contained object. @@ -744,7 +744,7 @@ Note that if you want to iterate over the list, you should iterate over a copy, } .br .fi -.SH "Q_LLONG & QVariant::asLongLong ()" +.SH "TQ_LLONG & QVariant::asLongLong ()" Returns the variant's value as long long reference. .SH "QMap<QString, QVariant> & QVariant::asMap ()" Returns the variant's value as variant map reference. @@ -854,7 +854,7 @@ Returns a reference to the stored time. See also toTime(). .SH "uint & QVariant::asUInt ()" Returns the variant's value as unsigned int reference. -.SH "Q_ULLONG & QVariant::asULongLong ()" +.SH "TQ_ULLONG & QVariant::asULongLong ()" Returns the variant's value as unsigned long long reference. .SH "bool QVariant::canCast ( Type t ) const" Returns TRUE if the variant's type can be cast to the requested type, \fIt\fR. Such casting is done automatically when calling the toInt(), toBool(), ... or asInt(), asBool(), ... methods. @@ -1015,7 +1015,7 @@ Note that if you want to iterate over the list, you should iterate over a copy, .fi .PP See also asList(). -.SH "Q_LLONG QVariant::toLongLong ( bool * ok = 0 ) const" +.SH "TQ_LLONG QVariant::toLongLong ( bool * ok = 0 ) const" Returns the variant as a long long int if the variant can be cast to LongLong; otherwise returns 0. .PP If \fIok\fR is non-null: \fI*ok\fR is set to TRUE if the value could be converted to an int; otherwise \fI*ok\fR is set to FALSE. @@ -1115,7 +1115,7 @@ Returns the variant as an unsigned int if the variant can be cast to UInt; other If \fIok\fR is non-null: \fI*ok\fR is set to TRUE if the value could be converted to an unsigned int; otherwise \fI*ok\fR is set to FALSE. .PP See also asUInt() and canCast(). -.SH "Q_ULLONG QVariant::toULongLong ( bool * ok = 0 ) const" +.SH "TQ_ULLONG QVariant::toULongLong ( bool * ok = 0 ) const" Returns the variant as as an unsigned long long int if the variant can be cast to ULongLong; otherwise returns 0. .PP If \fIok\fR is non-null: \fI*ok\fR is set to TRUE if the value could be converted to an int; otherwise \fI*ok\fR is set to FALSE. |