summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
Diffstat (limited to 'svtools')
-rw-r--r--svtools/inc/pch/precompiled_svt.hxx2
-rw-r--r--svtools/source/control/ruler.cxx1
-rw-r--r--svtools/source/graphic/grfmgr2.cxx22
3 files changed, 12 insertions, 13 deletions
diff --git a/svtools/inc/pch/precompiled_svt.hxx b/svtools/inc/pch/precompiled_svt.hxx
index 34843886b2e6..ba111fc0760e 100644
--- a/svtools/inc/pch/precompiled_svt.hxx
+++ b/svtools/inc/pch/precompiled_svt.hxx
@@ -24,7 +24,7 @@
#include <boost/optional.hpp>
#include <boost/ptr_container/ptr_set.hpp>
#include <boost/ptr_container/ptr_vector.hpp>
-#include <boost/scoped_array.hpp>
+#include <memory>
#include <boost/scoped_ptr.hpp>
#include <boost/shared_ptr.hpp>
#include <cassert>
diff --git a/svtools/source/control/ruler.cxx b/svtools/source/control/ruler.cxx
index 2d9aef0e5100..4595b42028e5 100644
--- a/svtools/source/control/ruler.cxx
+++ b/svtools/source/control/ruler.cxx
@@ -29,7 +29,6 @@
#include <svtools/svtools.hrc>
#include <svtools/colorcfg.hxx>
-#include <boost/scoped_array.hpp>
#include <vector>
using namespace std;
diff --git a/svtools/source/graphic/grfmgr2.cxx b/svtools/source/graphic/grfmgr2.cxx
index 03867e54cd22..e469805d803e 100644
--- a/svtools/source/graphic/grfmgr2.cxx
+++ b/svtools/source/graphic/grfmgr2.cxx
@@ -33,7 +33,7 @@
#include <vcl/virdev.hxx>
#include "grfcache.hxx"
#include <svtools/grfmgr.hxx>
-#include <boost/scoped_array.hpp>
+#include <memory>
// - defines -
@@ -334,10 +334,10 @@ bool ImplCreateRotatedScaled( const BitmapEx& rBmpEx, const GraphicAttr& rAttrib
bool bHMirr( rAttributes.GetMirrorFlags() & BmpMirrorFlags::Horizontal );
bool bVMirr( rAttributes.GetMirrorFlags() & BmpMirrorFlags::Vertical );
- boost::scoped_array<long> pMapIX(new long[ aUnrotatedWidth ]);
- boost::scoped_array<long> pMapFX(new long[ aUnrotatedWidth ]);
- boost::scoped_array<long> pMapIY(new long[ aUnrotatedHeight ]);
- boost::scoped_array<long> pMapFY(new long[ aUnrotatedHeight ]);
+ std::unique_ptr<long[]> pMapIX(new long[ aUnrotatedWidth ]);
+ std::unique_ptr<long[]> pMapFX(new long[ aUnrotatedWidth ]);
+ std::unique_ptr<long[]> pMapIY(new long[ aUnrotatedHeight ]);
+ std::unique_ptr<long[]> pMapFY(new long[ aUnrotatedHeight ]);
double fRevScaleX;
double fRevScaleY;
@@ -431,10 +431,10 @@ bool ImplCreateRotatedScaled( const BitmapEx& rBmpEx, const GraphicAttr& rAttrib
const double fSinAngle = sin( nRot10 * F_PI1800 );
const long aTargetWidth = nEndX - nStartX + 1L;
const long aTargetHeight = nEndY - nStartY + 1L;
- boost::scoped_array<long> pCosX(new long[ aTargetWidth ]);
- boost::scoped_array<long> pSinX(new long[ aTargetWidth ]);
- boost::scoped_array<long> pCosY(new long[ aTargetHeight ]);
- boost::scoped_array<long> pSinY(new long[ aTargetHeight ]);
+ std::unique_ptr<long[]> pCosX(new long[ aTargetWidth ]);
+ std::unique_ptr<long[]> pSinX(new long[ aTargetWidth ]);
+ std::unique_ptr<long[]> pCosY(new long[ aTargetHeight ]);
+ std::unique_ptr<long[]> pSinY(new long[ aTargetHeight ]);
long nUnRotX, nUnRotY, nSinY, nCosY;
sal_uInt8 cR0, cG0, cB0, cR1, cG1, cB1;
bool bRet = false;
@@ -798,8 +798,8 @@ bool ImplCreateRotatedScaled( const BitmapEx& rBmpEx, const GraphicAttr& rAttrib
if( !aMsk || ( ( pMAcc = aMsk.AcquireReadAccess() ) != NULL ) )
{
- boost::scoped_array<long> pMapLX(new long[ aUnrotatedWidth ]);
- boost::scoped_array<long> pMapLY(new long[ aUnrotatedHeight ]);
+ std::unique_ptr<long[]> pMapLX(new long[ aUnrotatedWidth ]);
+ std::unique_ptr<long[]> pMapLY(new long[ aUnrotatedHeight ]);
BitmapColor aTestB;
if( pMAcc )