diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-03-13 11:55:02 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-03-14 15:35:49 -0400 |
commit | 2245288574ef77b09416872326b4543c82790815 (patch) | |
tree | d3e15b4acc0ecb6a76d5e86778989c296eee542b /svl | |
parent | e92ed1560e13c7458e24ed6c7edf7fb1438c0823 (diff) |
I'm pretty sure this was meant to be unsigned.
Change-Id: Id074e31542383f6a31181749d7d4a5219522d9e0
Diffstat (limited to 'svl')
-rw-r--r-- | svl/inc/svl/cintitem.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/inc/svl/cintitem.hxx b/svl/inc/svl/cintitem.hxx index 6914dd5b327b..e781ada09a35 100644 --- a/svl/inc/svl/cintitem.hxx +++ b/svl/inc/svl/cintitem.hxx @@ -134,7 +134,7 @@ public: virtual SfxFieldUnit GetUnit() const; - sal_Int16 GetValue() const { return m_nValue; } + sal_uInt16 GetValue() const { return m_nValue; } inline void SetValue(sal_uInt16 nTheValue); }; |