summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2005-10-11 07:47:36 +0000
committerOliver Bolte <obo@openoffice.org>2005-10-11 07:47:36 +0000
commit7b05e3720787305bd7f503b4a1dc9fd4be3b7cd8 (patch)
tree86d3f40a11936050e74eb98c1435a452abf887b5
parentc18a3410677983c4cfad3e6edd8d12eb721c870d (diff)
INTEGRATION: CWS presfixes08 (1.3.10); FILE MERGED
2005/09/01 08:57:27 dbo 1.3.10.1: #i51786# code cleanup Issue number: Submitted by: Reviewed by:
-rw-r--r--slideshow/source/inc/animatedsprite.hxx17
1 files changed, 7 insertions, 10 deletions
diff --git a/slideshow/source/inc/animatedsprite.hxx b/slideshow/source/inc/animatedsprite.hxx
index a91626daac3f..1af79fec3e98 100644
--- a/slideshow/source/inc/animatedsprite.hxx
+++ b/slideshow/source/inc/animatedsprite.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: animatedsprite.hxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2005-09-07 21:04:32 $
+ * last change: $Author: obo $ $Date: 2005-10-11 08:47:36 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -57,12 +57,9 @@
#include <basegfx/polygon/b2dpolypolygon.hxx>
#endif
-#ifndef _COMPHELPER_OPTIONALVALUE_HXX
-#include <comphelper/optionalvalue.hxx>
-#endif
-
#include <viewlayer.hxx>
+#include "boost/optional.hpp"
/* Definition of AnimatedSprite class */
@@ -193,10 +190,10 @@ namespace presentation
::basegfx::B2DSize maContentPixelOffset;
double mnAlpha;
- ::comphelper::OptionalValue< ::basegfx::B2DPoint > maPosPixel;
- ::comphelper::OptionalValue< ::basegfx::B2DPoint > maPos;
- ::comphelper::OptionalValue< ::basegfx::B2DPolyPolygon > maClip;
- ::comphelper::OptionalValue< ::basegfx::B2DHomMatrix > maTransform;
+ ::boost::optional< ::basegfx::B2DPoint > maPosPixel;
+ ::boost::optional< ::basegfx::B2DPoint > maPos;
+ ::boost::optional< ::basegfx::B2DPolyPolygon > maClip;
+ ::boost::optional< ::basegfx::B2DHomMatrix > maTransform;
bool mbSpriteVisible;
};