summaryrefslogtreecommitdiff
path: root/svx/source/svdraw
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2011-03-23 18:01:22 +0100
committerLuboš Luňák <l.lunak@suse.cz>2011-03-24 18:20:59 +0100
commit687e5229db4be0f370431704b01781b78db27284 (patch)
tree8ddb4f5d330141c787b7099b9fa0b030e8524cf0 /svx/source/svdraw
parent6f2874653ebede9fcb64767821445ea0545609a7 (diff)
fix incorrect override of TakeTextRect()
bool and sal_Bool is not the same
Diffstat (limited to 'svx/source/svdraw')
-rwxr-xr-xsvx/source/svdraw/svdoashp.cxx2
-rwxr-xr-xsvx/source/svdraw/svdomeas.cxx2
-rwxr-xr-xsvx/source/svdraw/svdotext.cxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/svdraw/svdoashp.cxx b/svx/source/svdraw/svdoashp.cxx
index ecfa3051262a..a1ff85beb9b4 100755
--- a/svx/source/svdraw/svdoashp.cxx
+++ b/svx/source/svdraw/svdoashp.cxx
@@ -2968,7 +2968,7 @@ void SdrObjCustomShape::TakeTextAnchorRect( Rectangle& rAnchorRect ) const
SdrTextObj::TakeTextAnchorRect( rAnchorRect );
}
void SdrObjCustomShape::TakeTextRect( SdrOutliner& rOutliner, Rectangle& rTextRect, bool bNoEditText,
- Rectangle* pAnchorRect, sal_Bool /*bLineWidth*/) const
+ Rectangle* pAnchorRect, bool /*bLineWidth*/) const
{
Rectangle aAnkRect; // Rect innerhalb dem geankert wird
TakeTextAnchorRect(aAnkRect);
diff --git a/svx/source/svdraw/svdomeas.cxx b/svx/source/svdraw/svdomeas.cxx
index 488e77ac02c1..a92f4fe2b9e8 100755
--- a/svx/source/svdraw/svdomeas.cxx
+++ b/svx/source/svdraw/svdomeas.cxx
@@ -1300,7 +1300,7 @@ void SdrMeasureObj::NbcSetOutlinerParaObject(OutlinerParaObject* pTextObject)
}
void SdrMeasureObj::TakeTextRect( SdrOutliner& rOutliner, Rectangle& rTextRect, bool bNoEditText,
- Rectangle* pAnchorRect, sal_Bool bLineWidth ) const
+ Rectangle* pAnchorRect, bool bLineWidth ) const
{
if (bTextDirty) UndirtyText();
SdrTextObj::TakeTextRect( rOutliner, rTextRect, bNoEditText, pAnchorRect, bLineWidth );
diff --git a/svx/source/svdraw/svdotext.cxx b/svx/source/svdraw/svdotext.cxx
index 198beaecab93..39f1cfa51656 100755
--- a/svx/source/svdraw/svdotext.cxx
+++ b/svx/source/svdraw/svdotext.cxx
@@ -831,7 +831,7 @@ void SdrTextObj::TakeTextAnchorRect(Rectangle& rAnchorRect) const
}
void SdrTextObj::TakeTextRect( SdrOutliner& rOutliner, Rectangle& rTextRect, bool bNoEditText,
- Rectangle* pAnchorRect, sal_Bool bLineWidth ) const
+ Rectangle* pAnchorRect, bool bLineWidth ) const
{
Rectangle aAnkRect; // Rect innerhalb dem geankert wird
TakeTextAnchorRect(aAnkRect);