diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2009-01-05 17:49:45 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2009-01-05 17:49:45 +0000 |
commit | 210309048a2e7e57c92386dfb78ca108ec4d7830 (patch) | |
tree | e1dcf25e20bb8eec71e65602373996f501def919 /chart2 | |
parent | 6ef827a0f5a74af6bcb86afc99e930d43691dcfe (diff) |
CWS-TOOLING: integrate CWS overline3
2008-12-11 15:24:46 +0100 fredrikh r265314 : i97099
2008-12-11 15:20:37 +0100 fredrikh r265313 : i97099
2008-12-11 15:18:00 +0100 fredrikh r265312 : i97099
2008-12-11 15:17:00 +0100 fredrikh r265311 : i97099
2008-12-11 15:13:20 +0100 fredrikh r265309 : i97144
2008-12-11 15:06:24 +0100 fredrikh r265306 : i97099
2008-11-24 10:41:42 +0100 fme r264213 : #i5991# Overline support
2008-11-24 10:39:53 +0100 fme r264212 : #i5991# Overline support
2008-11-24 10:02:13 +0100 fme r264209 : #5991# Overline support
2008-11-24 10:01:26 +0100 fme r264208 : #5991# Overline support
2008-11-24 09:59:11 +0100 fme r264207 : #5991# Overline support
2008-11-24 09:57:11 +0100 fme r264206 : #5991# Overline support
2008-11-14 10:36:44 +0100 fme r263667 : CWS-TOOLING: rebase CWS overline3 to trunk@263288 (milestone: DEV300:m35)
2008-11-13 16:12:13 +0100 fme r263649 : #i5991# migrate CWS overline3 to SVN.
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/controller/itemsetwrapper/CharacterPropertyItemConverter.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/chart2/source/controller/itemsetwrapper/CharacterPropertyItemConverter.cxx b/chart2/source/controller/itemsetwrapper/CharacterPropertyItemConverter.cxx index e167c3995..3ca8db0be 100644 --- a/chart2/source/controller/itemsetwrapper/CharacterPropertyItemConverter.cxx +++ b/chart2/source/controller/itemsetwrapper/CharacterPropertyItemConverter.cxx @@ -171,7 +171,7 @@ void CharacterPropertyItemConverter::FillSpecialItem( uno::Any aValue( GetPropertySet()->getPropertyValue( C2U( "CharUnderline" ))); if( aValue.hasValue()) { - aItem.PutValue( aValue, MID_UNDERLINE ); + aItem.PutValue( aValue, MID_TL_STYLE ); bModified = true; } @@ -179,14 +179,14 @@ void CharacterPropertyItemConverter::FillSpecialItem( if( aValue.hasValue() && ( *reinterpret_cast< const sal_Bool * >( aValue.getValue()) != sal_False )) { - aItem.PutValue( aValue, MID_UL_HASCOLOR ); + aItem.PutValue( aValue, MID_TL_HASCOLOR ); bModified = true; } aValue = GetPropertySet()->getPropertyValue( C2U( "CharUnderlineColor" )); if( aValue.hasValue()) { - aItem.PutValue( aValue, MID_UL_COLOR ); + aItem.PutValue( aValue, MID_TL_COLOR ); bModified = true; } @@ -365,7 +365,7 @@ bool CharacterPropertyItemConverter::ApplySpecialItem( static_cast< const SvxUnderlineItem & >( rItemSet.Get( nWhichId )); - if( rItem.QueryValue( aValue, MID_UNDERLINE )) + if( rItem.QueryValue( aValue, MID_TL_STYLE )) { if( aValue != GetPropertySet()->getPropertyValue( C2U( "CharUnderline" ) )) { @@ -374,7 +374,7 @@ bool CharacterPropertyItemConverter::ApplySpecialItem( } } - if( rItem.QueryValue( aValue, MID_UL_COLOR )) + if( rItem.QueryValue( aValue, MID_TL_COLOR )) { if( aValue != GetPropertySet()->getPropertyValue( C2U( "CharUnderlineColor" ) )) { @@ -383,7 +383,7 @@ bool CharacterPropertyItemConverter::ApplySpecialItem( } } - if( rItem.QueryValue( aValue, MID_UL_HASCOLOR )) + if( rItem.QueryValue( aValue, MID_TL_HASCOLOR )) { if( aValue != GetPropertySet()->getPropertyValue( C2U( "CharUnderlineHasColor" ) )) { |