summaryrefslogtreecommitdiff
path: root/toolkit/source/controls/animatedimages.cxx
diff options
context:
space:
mode:
authorFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2011-01-25 17:40:42 +0100
committerFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2011-01-25 17:40:42 +0100
commit235f20dfc83a1d47313d76836d34eb2c2f57db49 (patch)
tree7ab2e01a538edd6e4b01458995179d2c706667cc /toolkit/source/controls/animatedimages.cxx
parent54d9ea315aef1d774d728e6e8cbac3183def5f0e (diff)
gridsort: adjusted new classes from MWS to the UnoControl/Model ctor changes done in the CWS
Diffstat (limited to 'toolkit/source/controls/animatedimages.cxx')
-rwxr-xr-xtoolkit/source/controls/animatedimages.cxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/toolkit/source/controls/animatedimages.cxx b/toolkit/source/controls/animatedimages.cxx
index 03cb2f26f324..c2fd91f1ea46 100755
--- a/toolkit/source/controls/animatedimages.cxx
+++ b/toolkit/source/controls/animatedimages.cxx
@@ -67,6 +67,7 @@ namespace toolkit
using ::com::sun::star::awt::XWindowPeer;
using ::com::sun::star::util::XModifyListener;
using ::com::sun::star::awt::XToolkit;
+ using ::com::sun::star::lang::XMultiServiceFactory;
/** === end UNO using === **/
namespace VisualEffect = ::com::sun::star::awt::VisualEffect;
namespace ImageScaleMode = ::com::sun::star::awt::ImageScaleMode;
@@ -75,8 +76,8 @@ namespace toolkit
//= AnimatedImagesControl
//==================================================================================================================
//------------------------------------------------------------------------------------------------------------------
- AnimatedImagesControl::AnimatedImagesControl()
- :AnimatedImagesControl_Base()
+ AnimatedImagesControl::AnimatedImagesControl( Reference< XMultiServiceFactory > const & i_factory )
+ :AnimatedImagesControl_Base( i_factory )
{
}
@@ -238,8 +239,9 @@ namespace toolkit
//= AnimatedImagesControlModel
//==================================================================================================================
//------------------------------------------------------------------------------------------------------------------
- AnimatedImagesControlModel::AnimatedImagesControlModel()
- :m_pData( new AnimatedImagesControlModel_Data )
+ AnimatedImagesControlModel::AnimatedImagesControlModel( Reference< XMultiServiceFactory > const & i_factory )
+ :AnimatedImagesControlModel_Base( i_factory )
+ ,m_pData( new AnimatedImagesControlModel_Data )
{
ImplRegisterProperty( BASEPROPERTY_AUTO_REPEAT );
ImplRegisterProperty( BASEPROPERTY_BORDER );