summaryrefslogtreecommitdiff
path: root/svtools/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-01-13 23:07:52 +0000
committerCaolán McNamara <caolanm@redhat.com>2013-01-15 14:58:05 +0000
commit03f7d96997e8d9cde6b82936792dee4d3a756eda (patch)
tree411d3e0e481db0d50d4c525ede8c3ef6091364e4 /svtools/source
parentf70713257f47f341ffa6b500b973597d2dfc9657 (diff)
split out border page and adapt code
Change-Id: I1c6b8c0fdbd82d54920e168afbe5c33a29244202
Diffstat (limited to 'svtools/source')
-rw-r--r--svtools/source/control/valueset.cxx6
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 ) :