summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2008-12-18 09:54:51 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2008-12-18 09:54:51 +0000
commit4d0da2acf2528f7adad0093766a54f1780ef2466 (patch)
treebdfae25c0a13b597f7425c43442ac02d14ad9131
parent4b2a924ba4d16b6e82df42c0ee2b1c90803ad0f0 (diff)
#i10000# #i91949# Since CWS tl56 there's no EE_CNTRL_NOREDLINES define any more (fix by TL).
-rw-r--r--svx/source/svdraw/svdotextdecomposition.cxx8
-rw-r--r--svx/source/svdraw/svdotextpathdecomposition.cxx2
2 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/svdraw/svdotextdecomposition.cxx b/svx/source/svdraw/svdotextdecomposition.cxx
index 859ad24934..db99ab2c1e 100644
--- a/svx/source/svdraw/svdotextdecomposition.cxx
+++ b/svx/source/svdraw/svdotextdecomposition.cxx
@@ -599,7 +599,7 @@ namespace
bool SdrTextObj::impCheckSpellCheckForDecomposeTextPrimitive() const
{
SdrOutliner& rOutliner = ImpGetDrawOutliner();
- return (rOutliner.GetControlWord() & EE_CNTRL_NOREDLINES);
+ return false;
}
bool SdrTextObj::impDecomposeContourTextPrimitive(
@@ -654,7 +654,7 @@ bool SdrTextObj::impDecomposeContourTextPrimitive(
rOutliner.setVisualizedPage(0);
rTarget = aConverter.getPrimitive2DSequence();
- return (rOutliner.GetControlWord() & EE_CNTRL_NOREDLINES);
+ return false;
}
bool SdrTextObj::impDecomposeBlockTextPrimitive(
@@ -827,7 +827,7 @@ bool SdrTextObj::impDecomposeBlockTextPrimitive(
rOutliner.setVisualizedPage(0);
rTarget = aConverter.getPrimitive2DSequence();
- return (rOutliner.GetControlWord() & EE_CNTRL_NOREDLINES);
+ return false;
}
bool SdrTextObj::impDecomposeStretchTextPrimitive(
@@ -899,7 +899,7 @@ bool SdrTextObj::impDecomposeStretchTextPrimitive(
rOutliner.setVisualizedPage(0);
rTarget = aConverter.getPrimitive2DSequence();
- return (rOutliner.GetControlWord() & EE_CNTRL_NOREDLINES);
+ return false;
}
//////////////////////////////////////////////////////////////////////////////
diff --git a/svx/source/svdraw/svdotextpathdecomposition.cxx b/svx/source/svdraw/svdotextpathdecomposition.cxx
index eed3e8d698..5379f525b0 100644
--- a/svx/source/svdraw/svdotextpathdecomposition.cxx
+++ b/svx/source/svdraw/svdotextpathdecomposition.cxx
@@ -930,7 +930,7 @@ bool SdrTextObj::impDecomposePathTextPrimitive(
drawinglayer::primitive2d::appendPrimitive2DSequenceToPrimitive2DSequence(rTarget, aRetvalA);
drawinglayer::primitive2d::appendPrimitive2DSequenceToPrimitive2DSequence(rTarget, aRetvalB);
- return (rOutliner.GetControlWord() & EE_CNTRL_NOREDLINES);
+ return false;
}
//////////////////////////////////////////////////////////////////////////////