summaryrefslogtreecommitdiff
path: root/slideshow/source/engine/activities/activitiesfactory.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'slideshow/source/engine/activities/activitiesfactory.cxx')
-rw-r--r--slideshow/source/engine/activities/activitiesfactory.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/slideshow/source/engine/activities/activitiesfactory.cxx b/slideshow/source/engine/activities/activitiesfactory.cxx
index 6f5a05b197cb..4732197657ba 100644
--- a/slideshow/source/engine/activities/activitiesfactory.cxx
+++ b/slideshow/source/engine/activities/activitiesfactory.cxx
@@ -35,7 +35,7 @@
#include "continuousactivitybase.hxx"
#include "continuouskeytimeactivitybase.hxx"
-#include <o3tl/optional.hxx>
+#include <optional>
#include <memory>
#include <vector>
@@ -101,7 +101,7 @@ class FromToByActivity : public BaseType
{
public:
typedef typename AnimationType::ValueType ValueType;
- typedef o3tl::optional<ValueType> OptionalValueType;
+ typedef std::optional<ValueType> OptionalValueType;
private:
// some compilers don't inline whose definition they haven't
@@ -389,7 +389,7 @@ AnimationActivitySharedPtr createFromToByActivity(
const ::basegfx::B2DVector& rSlideBounds )
{
typedef typename AnimationType::ValueType ValueType;
- typedef o3tl::optional<ValueType> OptionalValueType;
+ typedef std::optional<ValueType> OptionalValueType;
OptionalValueType aFrom;
OptionalValueType aTo;