fix copy assignment signatures
get value by reference introduced in commit8c2f2e1dd7
and commitf9b200ce54
Change-Id: Iba84dd752f4cbdde9f3676c434d107efabe63a38 Reviewed-on: https://gerrit.libreoffice.org/23974 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
This commit is contained in:
parent
e5dd156a44
commit
b4ddacbc55
2 changed files with 2 additions and 2 deletions
|
@ -67,7 +67,7 @@ namespace basctl
|
||||||
public:
|
public:
|
||||||
// noncopyable
|
// noncopyable
|
||||||
Impl(const Impl&) = delete;
|
Impl(const Impl&) = delete;
|
||||||
const Impl& operator=(const Impl) = delete;
|
Impl& operator=(const Impl&) = delete;
|
||||||
|
|
||||||
Impl (DocumentEventListener&, Reference<XModel> const& rxDocument);
|
Impl (DocumentEventListener&, Reference<XModel> const& rxDocument);
|
||||||
virtual ~Impl ();
|
virtual ~Impl ();
|
||||||
|
|
|
@ -36,7 +36,7 @@ namespace dxcanvas
|
||||||
virtual ~GraphicsProvider() {}
|
virtual ~GraphicsProvider() {}
|
||||||
/// make noncopyable
|
/// make noncopyable
|
||||||
GraphicsProvider(const GraphicsProvider&) = delete;
|
GraphicsProvider(const GraphicsProvider&) = delete;
|
||||||
const GraphicsProvider operator=(const GraphicsProvider) = delete;
|
GraphicsProvider& operator=(const GraphicsProvider&) = delete;
|
||||||
|
|
||||||
virtual GraphicsSharedPtr getGraphics() = 0;
|
virtual GraphicsSharedPtr getGraphics() = 0;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue