summaryrefslogtreecommitdiff
path: root/fpicker/source
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-03-14 14:45:34 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-03-14 14:45:34 +0100
commitb30173fd76f322aa3ca1845e5208d6f580b2ab15 (patch)
tree6833dbffe75473fd79fafaee037b8fd7b826ad28 /fpicker/source
parentb0fa3fc8e50e5baca523e68fa5e6591591dde52f (diff)
loplugin:subtlezeroinit (clang-cl)
Change-Id: I19f41363e3efcc716d3258106ebee2424be25b6a
Diffstat (limited to 'fpicker/source')
-rw-r--r--fpicker/source/win32/filepicker/customcontrolfactory.cxx2
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: */