diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-02-20 11:26:28 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-02-21 07:34:56 +0100 |
commit | 18e07fd7d98d157af922dc64070e7c57f7dc9802 (patch) | |
tree | d4f3abb676f18be2b80c3358807a249daf82f53a /vcl/opengl | |
parent | 4f502dd5700f29ce8fe0c1e6a9de337a9ebe3216 (diff) |
loplugin:subtlezeroinit: vcl
Change-Id: I041390c7cea1e246f07e799ee2430c16e86723d8
Diffstat (limited to 'vcl/opengl')
-rw-r--r-- | vcl/opengl/salbmp.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/opengl/salbmp.cxx b/vcl/opengl/salbmp.cxx index c36866045d0a..f5d458ed9c5b 100644 --- a/vcl/opengl/salbmp.cxx +++ b/vcl/opengl/salbmp.cxx @@ -95,7 +95,7 @@ sal_uInt16 lclBytesPerRow(sal_uInt16 nBits, int nWidth) } typedef std::vector<std::unique_ptr< FixedTextureAtlasManager > > TextureAtlasVector; -static vcl::DeleteOnDeinit< TextureAtlasVector > gTextureAtlases(new TextureAtlasVector()); +static vcl::DeleteOnDeinit< TextureAtlasVector > gTextureAtlases(new TextureAtlasVector); } |