summaryrefslogtreecommitdiff
path: root/sc/source/ui
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-09-11 11:03:24 +0200
committerStephan Bergmann <sbergman@redhat.com>2012-09-11 11:03:24 +0200
commit3b333819a335a6c734eba26a7ff4ff87c3cffbd9 (patch)
tree54f3ebba12b0b2385201ae7912bf09d4b65eb97d /sc/source/ui
parent8e136c360ddaa78816ba264dba3b8a9b7289d8ec (diff)
warning C4805: '!=': unsafe mix of type 'bool' and type 'sal_Bool'
Change-Id: Ie05299fb67d90a7df332626d361697cb32bb205c
Diffstat (limited to 'sc/source/ui')
-rw-r--r--sc/source/ui/view/gridwin.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/view/gridwin.cxx b/sc/source/ui/view/gridwin.cxx
index 873b08b48396..33926232166c 100644
--- a/sc/source/ui/view/gridwin.cxx
+++ b/sc/source/ui/view/gridwin.cxx
@@ -1168,7 +1168,7 @@ void ScGridWindow::LaunchDataSelectMenu( SCCOL nCol, SCROW nRow, bool bDataSelec
sal_uInt16 i;
ScDocument* pDoc = pViewData->GetDocument();
SCTAB nTab = pViewData->GetTabNo();
- sal_Bool bLayoutRTL = pDoc->IsLayoutRTL( nTab );
+ bool bLayoutRTL = pDoc->IsLayoutRTL( nTab );
long nSizeX = 0;
long nSizeY = 0;