diff options
author | Olivier Goffart <ogoffart@trolltech.com> | 2009-08-20 09:58:20 (GMT) |
---|---|---|
committer | Olivier Goffart <ogoffart@trolltech.com> | 2009-08-20 09:59:44 (GMT) |
commit | 264eb347595cc92a444e3908831d89acef1f05b3 (patch) | |
tree | b00fe745eb671ff1a245e9714dcb3a169d0e13c0 /src/corelib/kernel/qvariant.h | |
parent | dd5877fe48d647f1da20995c4d833d76ed43fd84 (diff) | |
download | Qt-264eb347595cc92a444e3908831d89acef1f05b3.zip Qt-264eb347595cc92a444e3908831d89acef1f05b3.tar.gz Qt-264eb347595cc92a444e3908831d89acef1f05b3.tar.bz2 |
Fix QVariant::toFloat() and QVariant::toReal
Reviewed-by: Thierry
Diffstat (limited to 'src/corelib/kernel/qvariant.h')
-rw-r--r-- | src/corelib/kernel/qvariant.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/corelib/kernel/qvariant.h b/src/corelib/kernel/qvariant.h index 79bd5b8..d6a704e 100644 --- a/src/corelib/kernel/qvariant.h +++ b/src/corelib/kernel/qvariant.h @@ -358,6 +358,7 @@ class Q_CORE_EXPORT QVariant bool b; double d; float f; + qreal real; qlonglong ll; qulonglong ull; QObject *o; |