diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-02-28 16:58:25 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-02-28 16:59:01 +0000 |
commit | ac08d3f6967b241d6028d9cd17cce583ac72871e (patch) | |
tree | b58118c044cd90c7b0f59e364bc3c1a97fb2fba5 /dbaccess/source | |
parent | dc505d3a5cdebe6271fcd6dae7b4d69e7c1af13e (diff) |
we don't want any of these to be streamed out/in as 64bit values
Diffstat (limited to 'dbaccess/source')
-rw-r--r-- | dbaccess/source/ui/inc/TableRow.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/inc/TableRow.hxx b/dbaccess/source/ui/inc/TableRow.hxx index 3d336bb77650..a17da65714e6 100644 --- a/dbaccess/source/ui/inc/TableRow.hxx +++ b/dbaccess/source/ui/inc/TableRow.hxx @@ -42,7 +42,7 @@ namespace dbaui { private: OFieldDescription* m_pActFieldDescr; - long m_nPos; + sal_Int32 m_nPos; bool m_bReadOnly; bool m_bOwnsDescriptions; @@ -65,7 +65,7 @@ namespace dbaui @return the current position in the table */ - inline long GetPos() const { return m_nPos; } + inline sal_Int32 GetPos() const { return m_nPos; } inline void SetPos(sal_Int32 _nPos) { m_nPos = _nPos; } /** set the row readonly |