diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-02-25 17:24:08 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-02-26 08:41:36 +0100 |
commit | b629d98e6f9fc71ee0f43a973cf9cbb85148f073 (patch) | |
tree | 6baae5cd113291c1138c8baf5e7808cdf6c9e56b /vcl/skia | |
parent | 6fc261fa1a33fb62e97a8e5beeba7fbb44e8774c (diff) |
loplugin:nullptr (clang-cl)
Change-Id: I0d40f6ee515430f2d32fb7d3bcc193273d36c016
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89469
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'vcl/skia')
-rw-r--r-- | vcl/skia/win/gdiimpl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/skia/win/gdiimpl.cxx b/vcl/skia/win/gdiimpl.cxx index 4d726ec2d215..3c034856e7aa 100644 --- a/vcl/skia/win/gdiimpl.cxx +++ b/vcl/skia/win/gdiimpl.cxx @@ -297,7 +297,7 @@ std::unique_ptr<sk_app::WindowContext> createVulkanWindowContext() { SkiaZone zone; sk_app::DisplayParams displayParams; - return sk_app::window_context_factory::MakeVulkanForWin(0, displayParams); + return sk_app::window_context_factory::MakeVulkanForWin(nullptr, displayParams); } struct SetFunction |