summaryrefslogtreecommitdiff
path: root/cppcanvas/source/wrapper/implcustomsprite.cxx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2004-11-26 20:00:36 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2004-11-26 20:00:36 +0000
commitf2bd6f8e414e88b0c92455441b259f3940751b6a (patch)
tree672d561b5fa67afb9bbe00b3d13e0082f8db514a /cppcanvas/source/wrapper/implcustomsprite.cxx
parent06080bb49dbb71337867ced909c0b0d743cf0dee (diff)
INTEGRATION: CWS presentationengine01 (1.2.2); FILE MERGED
2004/07/20 19:09:06 thb 1.2.2.3: #110496# Unified include statements; removed external prefix from boost includes 2004/06/25 10:30:30 thb 1.2.2.2: #110496# Some header cleanups (missing forward declarations), changed Canvas and derived to emulate covariant return types on clone() (not directly possible with shared_ptr) 2004/04/05 15:58:53 thb 1.2.2.1: Resync with canvas01 changes
Diffstat (limited to 'cppcanvas/source/wrapper/implcustomsprite.cxx')
-rw-r--r--cppcanvas/source/wrapper/implcustomsprite.cxx16
1 files changed, 9 insertions, 7 deletions
diff --git a/cppcanvas/source/wrapper/implcustomsprite.cxx b/cppcanvas/source/wrapper/implcustomsprite.cxx
index 39e50bfe9c9f..282756848f6b 100644
--- a/cppcanvas/source/wrapper/implcustomsprite.cxx
+++ b/cppcanvas/source/wrapper/implcustomsprite.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: implcustomsprite.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: thb $ $Date: 2004-03-18 10:41:11 $
+ * last change: $Author: rt $ $Date: 2004-11-26 21:00:36 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -59,8 +59,8 @@
*
************************************************************************/
-#include "implcustomsprite.hxx"
-#include "implcanvas.hxx"
+#include <implcustomsprite.hxx>
+#include <implcanvas.hxx>
using namespace ::com::sun::star;
using namespace ::drafts::com::sun::star;
@@ -69,11 +69,13 @@ namespace cppcanvas
{
namespace internal
{
- ImplCustomSprite::ImplCustomSprite( const uno::Reference< rendering::XSpriteCanvas >& rParentCanvas,
- const uno::Reference< rendering::XCustomSprite >& rSprite ) :
+ ImplCustomSprite::ImplCustomSprite( const uno::Reference< rendering::XSpriteCanvas >& rParentCanvas,
+ const uno::Reference< rendering::XCustomSprite >& rSprite,
+ const ImplSpriteCanvas::TransformationArbiterSharedPtr& rTransformArbiter ) :
ImplSprite( rParentCanvas,
uno::Reference< rendering::XSprite >(rSprite,
- uno::UNO_QUERY) ),
+ uno::UNO_QUERY),
+ rTransformArbiter ),
mpLastCanvas(),
mxCustomSprite( rSprite )
{