diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-02-29 13:11:11 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-02-29 14:01:13 +0000 |
commit | 2f1ee06df6117d94738df87f9f3cdb159c9389fe (patch) | |
tree | 9a58ffbce6a1b5b41b175786b6be626ec8e01e9a /sc | |
parent | 0d9757e43217929fa172c1feecd161873cd7019b (diff) |
WaE: C4805: '!=' : unsafe mix of type 'bool' and type 'const sal_Bool'
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/view/gridwin4.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/view/gridwin4.cxx b/sc/source/ui/view/gridwin4.cxx index c7b258f7528f..ff3e67bbc67e 100644 --- a/sc/source/ui/view/gridwin4.cxx +++ b/sc/source/ui/view/gridwin4.cxx @@ -1382,7 +1382,7 @@ void ScGridWindow::GetSelectionRects( ::std::vector< Rectangle >& rPixelRects ) PutInOrder( nY1, nY2 ); sal_Bool bTestMerge = sal_True; - sal_Bool bRepeat = sal_True; + bool bRepeat = true; SCCOL nTestX2 = nX2; SCROW nTestY2 = nY2; |