diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2016-04-11 00:35:08 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-04-11 07:05:40 +0000 |
commit | b4ddacbc552905d0434e9204ee954cb4522a00cd (patch) | |
tree | 752d8b306a42a5c9fc5d5019df7d7bab136a7c01 /canvas | |
parent | e5dd156a44625865684b5dfa90a95108259deb50 (diff) |
fix copy assignment signatures
get value by reference
introduced in
commit 8c2f2e1dd77cdce9bdf63beff5a79f91adc44630 and
commit f9b200ce54cd67ddc04747f9676568a86e14d864
Change-Id: Iba84dd752f4cbdde9f3676c434d107efabe63a38
Reviewed-on: https://gerrit.libreoffice.org/23974
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'canvas')
-rw-r--r-- | canvas/source/directx/dx_graphicsprovider.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/canvas/source/directx/dx_graphicsprovider.hxx b/canvas/source/directx/dx_graphicsprovider.hxx index 22e6577d4f15..2d7c3d894465 100644 --- a/canvas/source/directx/dx_graphicsprovider.hxx +++ b/canvas/source/directx/dx_graphicsprovider.hxx @@ -36,7 +36,7 @@ namespace dxcanvas virtual ~GraphicsProvider() {} /// make noncopyable GraphicsProvider(const GraphicsProvider&) = delete; - const GraphicsProvider operator=(const GraphicsProvider) = delete; + GraphicsProvider& operator=(const GraphicsProvider&) = delete; virtual GraphicsSharedPtr getGraphics() = 0; }; |