diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-12 16:04:04 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-12 17:52:29 +0200 |
commit | b36963c0a6a09f70ca6d8d607dd3249a3496497d (patch) | |
tree | 33e06dc8d227957cb31355277fb5cf20b9918628 /include/vcl/print.hxx | |
parent | b08247a12b43fcd9f86ecd912fce7d69a3e66061 (diff) |
Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY code
Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
Diffstat (limited to 'include/vcl/print.hxx')
-rw-r--r-- | include/vcl/print.hxx | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/include/vcl/print.hxx b/include/vcl/print.hxx index 9d5fafb5efb9..199d298a020b 100644 --- a/include/vcl/print.hxx +++ b/include/vcl/print.hxx @@ -244,43 +244,43 @@ public: SAL_DLLPRIVATE void ImplEndPage(); protected: - virtual bool AcquireGraphics() const SAL_OVERRIDE; - virtual void ReleaseGraphics( bool bRelease = true ) SAL_OVERRIDE; - virtual void ImplReleaseFonts() SAL_OVERRIDE; + virtual bool AcquireGraphics() const override; + virtual void ReleaseGraphics( bool bRelease = true ) override; + virtual void ImplReleaseFonts() override; - virtual long GetGradientStepCount( long nMinRect ) SAL_OVERRIDE; - virtual bool UsePolyPolygonForComplexGradient() SAL_OVERRIDE; - virtual void ClipAndDrawGradientMetafile ( const Gradient &rGradient, const tools::PolyPolygon &rPolyPoly ) SAL_OVERRIDE; + virtual long GetGradientStepCount( long nMinRect ) override; + virtual bool UsePolyPolygonForComplexGradient() override; + virtual void ClipAndDrawGradientMetafile ( const Gradient &rGradient, const tools::PolyPolygon &rPolyPoly ) override; - void ScaleBitmap ( Bitmap&, SalTwoRect& ) SAL_OVERRIDE { }; + void ScaleBitmap ( Bitmap&, SalTwoRect& ) override { }; public: void DrawGradientEx( OutputDevice* pOut, const Rectangle& rRect, const Gradient& rGradient ); - virtual Bitmap GetBitmap( const Point& rSrcPt, const Size& rSize ) const SAL_OVERRIDE; + virtual Bitmap GetBitmap( const Point& rSrcPt, const Size& rSize ) const override; protected: virtual void DrawDeviceMask ( const Bitmap& rMask, const Color& rMaskColor, const Point& rDestPt, const Size& rDestSize, - const Point& rSrcPtPixel, const Size& rSrcSizePixel ) SAL_OVERRIDE; + const Point& rSrcPtPixel, const Size& rSrcSizePixel ) override; bool DrawTransformBitmapExDirect( const basegfx::B2DHomMatrix& aFullTransform, - const BitmapEx& rBitmapEx) SAL_OVERRIDE; + const BitmapEx& rBitmapEx) override; bool TransformAndReduceBitmapExToTargetRange( const basegfx::B2DHomMatrix& aFullTransform, basegfx::B2DRange &aVisibleRange, - double &fMaximumArea) SAL_OVERRIDE; + double &fMaximumArea) override; void DrawDeviceBitmap( const Point& rDestPt, const Size& rDestSize, const Point& rSrcPtPixel, const Size& rSrcSizePixel, - BitmapEx& rBitmapEx ) SAL_OVERRIDE; + BitmapEx& rBitmapEx ) override; - virtual void EmulateDrawTransparent( const tools::PolyPolygon& rPolyPoly, sal_uInt16 nTransparencePercent ) SAL_OVERRIDE; + virtual void EmulateDrawTransparent( const tools::PolyPolygon& rPolyPoly, sal_uInt16 nTransparencePercent ) override; - virtual void InitFont() const SAL_OVERRIDE; - virtual void SetFontOrientation( ImplFontEntry* const pFontEntry ) const SAL_OVERRIDE; + virtual void InitFont() const override; + virtual void SetFontOrientation( ImplFontEntry* const pFontEntry ) const override; public: Printer(); @@ -288,7 +288,7 @@ public: Printer( const QueueInfo& rQueueInfo ); Printer( const OUString& rPrinterName ); virtual ~Printer(); - virtual void dispose() SAL_OVERRIDE; + virtual void dispose() override; static const std::vector< OUString >& GetPrinterQueues(); static const QueueInfo* GetQueueInfo( const OUString& rPrinterName, bool bStatusUpdate ); @@ -369,20 +369,20 @@ public: static void PrintJob( const std::shared_ptr<vcl::PrinterController>& i_pController, const JobSetup& i_rInitSetup ); - virtual bool HasMirroredGraphics() const SAL_OVERRIDE; + virtual bool HasMirroredGraphics() const override; virtual void DrawOutDev( const Point& rDestPt, const Size& rDestSize, - const Point& rSrcPt, const Size& rSrcSize ) SAL_OVERRIDE; + const Point& rSrcPt, const Size& rSrcSize ) override; virtual void DrawOutDev( const Point& rDestPt, const Size& rDestSize, const Point& rSrcPt, const Size& rSrcSize, - const OutputDevice& rOutDev ) SAL_OVERRIDE; + const OutputDevice& rOutDev ) override; virtual void CopyArea( const Point& rDestPt, const Point& rSrcPt, const Size& rSrcSize, - bool bWindowInvalidate = false ) SAL_OVERRIDE; + bool bWindowInvalidate = false ) override; - virtual void DrawImage( const Point&, const Image&, DrawImageFlags ) SAL_OVERRIDE; + virtual void DrawImage( const Point&, const Image&, DrawImageFlags ) override; virtual void DrawImage( const Point&, const Size&, - const Image&, DrawImageFlags ) SAL_OVERRIDE; + const Image&, DrawImageFlags ) override; // These 3 together are more modular PrintJob(), allowing printing more documents as one print job |