diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-01-13 23:07:52 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-01-15 14:58:05 +0000 |
commit | 03f7d96997e8d9cde6b82936792dee4d3a756eda (patch) | |
tree | 411d3e0e481db0d50d4c525ede8c3ef6091364e4 /svtools | |
parent | f70713257f47f341ffa6b500b973597d2dfc9657 (diff) |
split out border page and adapt code
Change-Id: I1c6b8c0fdbd82d54920e168afbe5c33a29244202
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/control/valueset.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/svtools/source/control/valueset.cxx b/svtools/source/control/valueset.cxx index faf526325be7..bf699fd03ede 100644 --- a/svtools/source/control/valueset.cxx +++ b/svtools/source/control/valueset.cxx @@ -18,6 +18,7 @@ */ #include <tools/debug.hxx> +#include <vcl/builder.hxx> #include <vcl/decoview.hxx> #include <vcl/svapp.hxx> #include <vcl/scrbar.hxx> @@ -101,6 +102,11 @@ ValueSet::ValueSet( Window* pParent, WinBits nWinStyle, bool bDisableTransientCh mbIsTransientChildrenDisabled = bDisableTransientChildren; } +extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeValueSet(Window *pParent, VclBuilder::stringmap &) +{ + return new ValueSet(pParent, WB_TABSTOP); +} + // ----------------------------------------------------------------------- ValueSet::ValueSet( Window* pParent, const ResId& rResId, bool bDisableTransientChildren ) : |