diff options
author | David Ostrovsky <david@ostrovsky.org> | 2013-02-07 00:13:33 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-02-09 11:06:11 +0000 |
commit | 0efe5cf57e524aa197fbb57aee8a5548cb32f34a (patch) | |
tree | 38187c5ef771a3988f7e1a22cdbaec73da81bfbd /connectivity/inc | |
parent | c1e3943ceac62209b78e13a42ea67044383f4798 (diff) |
ORowSetValue: move float and double to union
Change-Id: Ic5de8ad2cf9ef1143b1a5468e5fc5c9974aca5ec
Reviewed-on: https://gerrit.libreoffice.org/2021
Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'connectivity/inc')
-rw-r--r-- | connectivity/inc/connectivity/FValue.hxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/connectivity/inc/connectivity/FValue.hxx b/connectivity/inc/connectivity/FValue.hxx index 3f72b41e7323..02b4a4ba390b 100644 --- a/connectivity/inc/connectivity/FValue.hxx +++ b/connectivity/inc/connectivity/FValue.hxx @@ -60,9 +60,12 @@ namespace connectivity sal_Int64 m_nInt64; sal_uInt64 m_uInt64; + float m_nFloat; + double m_nDouble; + rtl_uString* m_pString; - void* m_pValue; // can contains double, etc + void* m_pValue; // date/time/timestamp/sequence } m_aValue; sal_Int32 m_eTypeKind; // the database type |