diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-03-14 14:45:34 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-03-14 14:45:34 +0100 |
commit | b30173fd76f322aa3ca1845e5208d6f580b2ab15 (patch) | |
tree | 6833dbffe75473fd79fafaee037b8fd7b826ad28 | |
parent | b0fa3fc8e50e5baca523e68fa5e6591591dde52f (diff) |
loplugin:subtlezeroinit (clang-cl)
Change-Id: I19f41363e3efcc716d3258106ebee2424be25b6a
-rw-r--r-- | fpicker/source/win32/filepicker/customcontrolfactory.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpicker/source/win32/filepicker/customcontrolfactory.cxx b/fpicker/source/win32/filepicker/customcontrolfactory.cxx index ea66e56218d1..cfdb1d56c1f7 100644 --- a/fpicker/source/win32/filepicker/customcontrolfactory.cxx +++ b/fpicker/source/win32/filepicker/customcontrolfactory.cxx @@ -65,7 +65,7 @@ CCustomControl* CCustomControlFactory::CreateCustomControl(HWND aControlHandle, CCustomControl* CCustomControlFactory::CreateCustomControlContainer() { - return new CCustomControlContainer(); + return new CCustomControlContainer; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |