summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2013-05-14 14:46:33 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2013-05-14 20:17:14 +0900
commit1136925b2377925e4f6b83c4aeb2374e1d5bf32f (patch)
tree209f88ba43096b0a629759965e0d4bb82f52173b /svx
parent9febe2cc5000046bf49b973efb3970013a5b84e1 (diff)
initialized with plain 0, instead of sal_False/false
Change-Id: I2df1bd52293c4423de5ac4c41f9392be1e8d2ccf
Diffstat (limited to 'svx')
-rw-r--r--svx/source/svdraw/svdglev.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdglev.cxx b/svx/source/svdraw/svdglev.cxx
index c5f920c49934..359b413b3c96 100644
--- a/svx/source/svdraw/svdglev.cxx
+++ b/svx/source/svdraw/svdglev.cxx
@@ -107,7 +107,7 @@ TRISTATE SdrGlueEditView::IsMarkedGluePointsEscDir(sal_uInt16 nThisEsc) const
{
ForceUndirtyMrkPnt();
sal_Bool bFirst=sal_True;
- sal_uInt16 nRet=sal_False;
+ sal_uInt16 nRet=0;
((SdrGlueEditView*)this)->ImpDoMarkedGluePoints(ImpGetEscDir,sal_True,&bFirst,&nThisEsc,&nRet);
return (TRISTATE)nRet;
}