Catch another erroneous 'make' constructor function.

Change-Id: I4a674b44bce1f3c3f5c3de2639863ff4b4fcd41e
This commit is contained in:
Michael Meeks
2015-05-07 16:13:30 +01:00
parent 630fe2d0c9
commit 6fd3e56090

View File

@@ -96,7 +96,7 @@ SFTreeListBox::SFTreeListBox(vcl::Window* pParent)
extern "C" SAL_DLLPUBLIC_EXPORT vcl::Window* SAL_CALL makeSFTreeListBox(vcl::Window *pParent, VclBuilder::stringmap &)
{
return VclPtr<SFTreeListBox>::Create(pParent);
return new SFTreeListBox(pParent);
}
SFTreeListBox::~SFTreeListBox()