diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-11-03 11:08:40 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-11-05 10:36:28 +0000 |
commit | be968802f265394b42db9a02d9ed961394aa4663 (patch) | |
tree | 1029291fd321f8b87c035bafed9b57c244fb5dc9 /svtools | |
parent | bce042ca83c7cb5cc3e3bdc07c50b60e6a1ed659 (diff) |
convert basic dialog to .ui
Change-Id: I1ed45e5990aca4be8b499fe300d7d43fda16bd6a
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/contnr/treelistbox.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/svtools/source/contnr/treelistbox.cxx b/svtools/source/contnr/treelistbox.cxx index f8567523e172..5a2fea7b3fcc 100644 --- a/svtools/source/contnr/treelistbox.cxx +++ b/svtools/source/contnr/treelistbox.cxx @@ -38,6 +38,7 @@ #include <vcl/svapp.hxx> #include <vcl/accel.hxx> #include <vcl/i18nhelp.hxx> +#include <vcl/builder.hxx> #include <sot/formats.hxx> #include <unotools/accessiblestatesethelper.hxx> #include <rtl/instance.hxx> @@ -482,6 +483,11 @@ SvTreeListBox::SvTreeListBox(Window* pParent, const ResId& rResId) : SetSublistOpenWithLeftRight(); } +extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeSvTreeListBox(Window *pParent, VclBuilder::stringmap &) +{ + return new SvTreeListBox(pParent); +} + void SvTreeListBox::Clear() { DBG_CHKTHIS(SvTreeListBox,0); |