INTEGRATION: CWS chart26_DEV300 (1.19.20.1.6); FILE MERGED

2008/04/09 08:13:58 iha 1.19.20.1.6.3: #i72994# simpler access to 3D settings
2008/04/08 15:56:40 iha 1.19.20.1.6.2: #i72994# simpler access to 3D settings
2008/04/07 15:47:41 iha 1.19.20.1.6.1: #i72994# simpler access to 3D settings - joined from CWS xmlfilter04
This commit is contained in:
Vladimir Glazounov 2008-05-15 07:25:45 +00:00
parent 0a6cdcfc34
commit 3b3a313673

View file

@ -8,7 +8,7 @@
*
* $RCSfile: Diagram.cxx,v $
*
* $Revision: 1.23 $
* $Revision: 1.24 $
*
* This file is part of OpenOffice.org.
*
@ -396,6 +396,25 @@ void SAL_CALL Diagram::setTitleObject( const uno::Reference< chart2::XTitle >& T
}
}
// ____ X3DDefaultSetter ____
void SAL_CALL Diagram::set3DSettingsToDefault()
throw (uno::RuntimeException)
{
ThreeDHelper::set3DSettingsToDefault( this );
}
void SAL_CALL Diagram::setDefaultRotation()
throw (uno::RuntimeException)
{
ThreeDHelper::setDefaultRotation( this );
}
void SAL_CALL Diagram::setDefaultIllumination()
throw (uno::RuntimeException)
{
ThreeDHelper::setDefaultIllumination( this );
}
// ____ XCoordinateSystemContainer ____
void SAL_CALL Diagram::addCoordinateSystem(
const uno::Reference< chart2::XCoordinateSystem >& aCoordSys )