diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2011-03-23 18:01:22 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2011-03-24 18:20:59 +0100 |
commit | 687e5229db4be0f370431704b01781b78db27284 (patch) | |
tree | 8ddb4f5d330141c787b7099b9fa0b030e8524cf0 /svx/source | |
parent | 6f2874653ebede9fcb64767821445ea0545609a7 (diff) |
fix incorrect override of TakeTextRect()
bool and sal_Bool is not the same
Diffstat (limited to 'svx/source')
-rwxr-xr-x | svx/source/svdraw/svdoashp.cxx | 2 | ||||
-rwxr-xr-x | svx/source/svdraw/svdomeas.cxx | 2 | ||||
-rwxr-xr-x | svx/source/svdraw/svdotext.cxx | 2 |
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); |