summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-04-28 11:31:57 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-04-28 13:44:16 +0200
commit7d722ac710a0c19b03c0c4c7615c299df43a843d (patch)
treef12551e70f4bbf38ccf37f47cba9cc8094c499a1
parent1b687bb6b277b500c4c3d155da546ba88bc07ff6 (diff)
ImpGetPercent transports the return value as type sal_uInt16/SDR_TRISTATE
Change-Id: I49adba804bbbf79390b105f894b0d11f3b6ae2dc
-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 82b2adc07401..77e191d1ab59 100644
--- a/svx/source/svdraw/svdglev.cxx
+++ b/svx/source/svdraw/svdglev.cxx
@@ -143,7 +143,7 @@ SDR_TRISTATE SdrGlueEditView::IsMarkedGluePointsPercent() const
{
ForceUndirtyMrkPnt();
bool bFirst=true;
- sal_uInt16 nRet=sal_True;
+ sal_uInt16 nRet=sal_uInt16(true);
const_cast<SdrGlueEditView*>(this)->ImpDoMarkedGluePoints(ImpGetPercent,true,&bFirst,&nRet);
return (SDR_TRISTATE)nRet;
}