diff options
author | Pavel Janík <paveljanik@apache.org> | 2013-11-27 09:27:05 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-12-02 10:29:26 +0000 |
commit | af382ec04db5c19a0097c5c669672004ab2467fa (patch) | |
tree | 7233229a83578c42397506f81742a3afb592c87c | |
parent | 362c8d67e1cb8920bf179b52c50b5997d32eb296 (diff) |
WaE: unsigned const to prevent compiler warnings.
(cherry picked from commit 40b6e291c04205d1c4287e6ea602772c69f0e015)
-rw-r--r-- | sw/source/core/access/acctable.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/access/acctable.cxx b/sw/source/core/access/acctable.cxx index bb321301d9ea..92e1b0943126 100644 --- a/sw/source/core/access/acctable.cxx +++ b/sw/source/core/access/acctable.cxx @@ -67,7 +67,7 @@ typedef ::std::set < sal_Int32, Int32Less_Impl > Int32Set_Impl; typedef ::std::pair < sal_Int32, sal_Int32 > Int32Pair_Impl; typedef ::std::list < Int32Pair_Impl > Int32PairList_Impl; -const int SELECTION_WITH_NUM =10; +const unsigned int SELECTION_WITH_NUM = 10; class SwAccTableSelHander_Impl { |