summaryrefslogtreecommitdiff
path: root/svx/source/sdr/attribute
diff options
context:
space:
mode:
authorArmin Le Grand <Armin.Le.Grand@Sun.COM>2010-01-07 17:11:38 +0100
committerArmin Le Grand <Armin.Le.Grand@Sun.COM>2010-01-07 17:11:38 +0100
commitde7c998fe9ba5be956bf8a155455ad17985c4f88 (patch)
treee8cbf9ed113dd79fa1ecd62aa7ccf86d143c3431 /svx/source/sdr/attribute
parentb0c799c7fbaa93f707bf18a87eb9aef5d86be52c (diff)
parent108c876c1c9a723b92f876662e02ee105a55bbfe (diff)
aw079: changes for resync
Diffstat (limited to 'svx/source/sdr/attribute')
-rw-r--r--svx/source/sdr/attribute/sdrtextattribute.cxx13
1 files changed, 9 insertions, 4 deletions
diff --git a/svx/source/sdr/attribute/sdrtextattribute.cxx b/svx/source/sdr/attribute/sdrtextattribute.cxx
index ae6204d15bef..3afc03d1600d 100644
--- a/svx/source/sdr/attribute/sdrtextattribute.cxx
+++ b/svx/source/sdr/attribute/sdrtextattribute.cxx
@@ -65,7 +65,8 @@ namespace drawinglayer
bool bBlink,
bool bScroll,
bool bInEditMode,
- bool bFixedCellHeight)
+ bool bFixedCellHeight,
+ bool bWrongSpell)
: mpSdrText(&rSdrText),
maOutlinerParaObject(rOutlinerParaObject),
mpSdrFormTextAttribute(0),
@@ -82,7 +83,8 @@ namespace drawinglayer
mbBlink(bBlink),
mbScroll(bScroll),
mbInEditMode(bInEditMode),
- mbFixedCellHeight(bFixedCellHeight)
+ mbFixedCellHeight(bFixedCellHeight),
+ mbWrongSpell(bWrongSpell)
{
if(XFT_NONE != eFormTextStyle)
{
@@ -123,7 +125,8 @@ namespace drawinglayer
mbBlink(rCandidate.isBlink()),
mbScroll(rCandidate.isScroll()),
mbInEditMode(rCandidate.isInEditMode()),
- mbFixedCellHeight(rCandidate.isFixedCellHeight())
+ mbFixedCellHeight(rCandidate.isFixedCellHeight()),
+ mbWrongSpell(rCandidate.isWrongSpell())
{
if(rCandidate.getSdrFormTextAttribute())
{
@@ -164,6 +167,7 @@ namespace drawinglayer
mbScroll = rCandidate.isScroll();
mbInEditMode = rCandidate.isInEditMode();
mbFixedCellHeight = rCandidate.isFixedCellHeight();
+ mbWrongSpell = rCandidate.isWrongSpell();
return *this;
}
@@ -197,7 +201,8 @@ namespace drawinglayer
&& isBlink() == rCandidate.isBlink()
&& isScroll() == rCandidate.isScroll()
&& isInEditMode() == rCandidate.isInEditMode()
- && isFixedCellHeight() == rCandidate.isFixedCellHeight());
+ && isFixedCellHeight() == rCandidate.isFixedCellHeight()
+ && isWrongSpell() == rCandidate.isWrongSpell());
}
void SdrTextAttribute::getBlinkTextTiming(drawinglayer::animation::AnimationEntryList& rAnimList) const