Kaydet (Commit) 5272bfb3 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:deletedspecial

Change-Id: Ibfed67bd911579caa19ca2203f60a86a4e6d637c
üst 2b55846a
......@@ -205,8 +205,7 @@ namespace oglcanvas
o3tl::ThreadSafeRefCountingPolicy > RecordVectorT;
private:
// declared, but not defined
CanvasHelper( const CanvasHelper& );
CanvasHelper( const CanvasHelper& ) SAL_DELETED_FUNCTION;
void setupGraphicsState( Action& o_action,
const ::com::sun::star::rendering::ViewState& viewState,
......
......@@ -80,8 +80,8 @@ namespace canvas
virtual ~CachedPrimitiveBase(); // we're a ref-counted UNO class. _We_ destroy ourselves.
private:
CachedPrimitiveBase( const CachedPrimitiveBase& );
CachedPrimitiveBase& operator=( const CachedPrimitiveBase& );
CachedPrimitiveBase( const CachedPrimitiveBase& ) SAL_DELETED_FUNCTION;
CachedPrimitiveBase& operator=( const CachedPrimitiveBase& ) SAL_DELETED_FUNCTION;
/** Actually perform the requested redraw.
......
......@@ -464,8 +464,8 @@ namespace canvas
mutable bool mbSurfaceDirty;
private:
CanvasBase( const CanvasBase& );
CanvasBase& operator=( const CanvasBase& );
CanvasBase( const CanvasBase& ) SAL_DELETED_FUNCTION;
CanvasBase& operator=( const CanvasBase& ) SAL_DELETED_FUNCTION;
};
}
......
......@@ -196,8 +196,8 @@ namespace canvas
void visibilityUpdated() const { mbVisibilityDirty=false; }
private:
CanvasCustomSpriteHelper( const CanvasCustomSpriteHelper& );
CanvasCustomSpriteHelper& operator=( const CanvasCustomSpriteHelper& );
CanvasCustomSpriteHelper( const CanvasCustomSpriteHelper& ) SAL_DELETED_FUNCTION;
CanvasCustomSpriteHelper& operator=( const CanvasCustomSpriteHelper& ) SAL_DELETED_FUNCTION;
/** Called to convert an API polygon to a basegfx polygon
......
......@@ -373,8 +373,8 @@ namespace canvas
bool mbDumpScreenContent;
private:
GraphicDeviceBase( const GraphicDeviceBase& );
GraphicDeviceBase& operator=( const GraphicDeviceBase& );
GraphicDeviceBase( const GraphicDeviceBase& ) SAL_DELETED_FUNCTION;
GraphicDeviceBase& operator=( const GraphicDeviceBase& ) SAL_DELETED_FUNCTION;
};
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment