diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-10-03 17:11:46 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-10-04 20:38:00 +0200 |
commit | 66df5e5bb0fc19c28c99592b562be8778438057c (patch) | |
tree | 9138b4c21d721fed6d6541fb21fcf2cd2aa6cef7 /vcl/qt5/Qt5SvpSurface.cxx | |
parent | a7411c2ee537355dc8051b7059e3a4d0bc708c04 (diff) |
Related: tdf#127529 make it harder to misunderstand this VirtualDevice ctor
Change-Id: I250bc68da118a994a2e0ff8ab9eb11112827756d
Reviewed-on: https://gerrit.libreoffice.org/80158
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/qt5/Qt5SvpSurface.cxx')
-rw-r--r-- | vcl/qt5/Qt5SvpSurface.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vcl/qt5/Qt5SvpSurface.cxx b/vcl/qt5/Qt5SvpSurface.cxx index 00f6004bd2a0..3e300755a992 100644 --- a/vcl/qt5/Qt5SvpSurface.cxx +++ b/vcl/qt5/Qt5SvpSurface.cxx @@ -65,7 +65,8 @@ void Qt5SvpSurface::flush() const VclPtr<VirtualDevice> Qt5SvpSurface::createVirtualDevice() const { - return VclPtrInstance<VirtualDevice>(nullptr, Size(1, 1), DeviceFormat::DEFAULT); + //TODO allow creating a VirtualDevice to draw to the current surface + return VclPtrInstance<VirtualDevice>(DeviceFormat::DEFAULT); } } // namespace cairo |