diff options
author | Rüdiger Timm <rt@openoffice.org> | 2007-07-26 07:06:45 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2007-07-26 07:06:45 +0000 |
commit | af33b9c169054b95f096424bb89f3e28fb3334ed (patch) | |
tree | 1e142e628220426e510da87f58d04f112b379708 | |
parent | 1fcbed85934b062a43fa603961c5c37c047400ca (diff) |
INTEGRATION: CWS chart09 (1.6.32); FILE MERGED
2007/07/18 15:05:47 iha 1.6.32.1: #i79069# dashed lines in charts are not saved anymore
-rw-r--r-- | chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx b/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx index 3326cace596d..c87ab505ab30 100644 --- a/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx +++ b/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx @@ -4,9 +4,9 @@ * * $RCSfile: DataSeriesPointWrapper.cxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: rt $ $Date: 2007-07-25 08:26:45 $ + * last change: $Author: rt $ $Date: 2007-07-26 08:06:45 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -481,7 +481,7 @@ void WrappedLineStyleProperty::setPropertyToDefault( const Reference< beans::XPr Any WrappedLineStyleProperty::getPropertyDefault( const Reference< beans::XPropertyState >& xInnerPropertyState ) const throw (beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException) { - if( m_pDataSeriesPointWrapper && !m_pDataSeriesPointWrapper->isSupportingAreaProperties() ) + if( m_pDataSeriesPointWrapper && m_pDataSeriesPointWrapper->isLinesForbidden() ) return m_aDefaultValue; else return WrappedSeriesAreaOrLineProperty::getPropertyDefault( xInnerPropertyState ); @@ -490,7 +490,7 @@ Any WrappedLineStyleProperty::getPropertyDefault( const Reference< beans::XPrope beans::PropertyState WrappedLineStyleProperty::getPropertyState( const Reference< beans::XPropertyState >& xInnerPropertyState ) const throw (beans::UnknownPropertyException, uno::RuntimeException) { - if( m_pDataSeriesPointWrapper && !m_pDataSeriesPointWrapper->isSupportingAreaProperties() ) + if( m_pDataSeriesPointWrapper && m_pDataSeriesPointWrapper->isLinesForbidden() ) { beans::PropertyState aState = beans::PropertyState_DIRECT_VALUE; if( m_aOuterValue == m_aDefaultValue ) |