diff options
Diffstat (limited to 'vcl/source/app/svdata.cxx')
-rw-r--r-- | vcl/source/app/svdata.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/vcl/source/app/svdata.cxx b/vcl/source/app/svdata.cxx index 491bf03621d8..0d0930a8646a 100644 --- a/vcl/source/app/svdata.cxx +++ b/vcl/source/app/svdata.cxx @@ -63,7 +63,6 @@ #endif #include <basegfx/utils/systemdependentdata.hxx> #include <cppuhelper/basemutex.hxx> -#include <o3tl/make_unique.hxx> using namespace com::sun::star::uno; using namespace com::sun::star::lang; @@ -116,7 +115,7 @@ namespace public: SystemDependentDataBuffer(const sal_Char* pDebugName) : basegfx::SystemDependentDataManager(), - maTimer(o3tl::make_unique<Timer>(pDebugName)), + maTimer(std::make_unique<Timer>(pDebugName)), maEntries() { maTimer->SetTimeout(1000); |