summaryrefslogtreecommitdiff
path: root/svx/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-01-01 21:32:32 +0000
committerCaolán McNamara <caolanm@redhat.com>2013-01-07 16:17:51 +0000
commit5d4a4f75981a9a8c199164959d3acee438d864b4 (patch)
treedd3c159ec7e3e5968387c3392354564e2e4c0cca /svx/source
parentad1e2d087b3b313174bdbbc929ace3788074a2f4 (diff)
pick out graphic numbering page to cui and adapt code
Change-Id: I8bfd09a1f48fe892fb1a99962d0a46de8b7cb1ec
Diffstat (limited to 'svx/source')
-rw-r--r--svx/source/dialog/svxbmpnumvalueset.cxx12
1 files changed, 12 insertions, 0 deletions
diff --git a/svx/source/dialog/svxbmpnumvalueset.cxx b/svx/source/dialog/svxbmpnumvalueset.cxx
index 9fbdbd1b740a..4fe34b455a4c 100644
--- a/svx/source/dialog/svxbmpnumvalueset.cxx
+++ b/svx/source/dialog/svxbmpnumvalueset.cxx
@@ -476,8 +476,20 @@ SvxBmpNumValueSet::SvxBmpNumValueSet( Window* pParent, const ResId& rResId )
init();
}
+SvxBmpNumValueSet::SvxBmpNumValueSet(Window* pParent, WinBits nWinBits)
+ : SvxNumValueSet(pParent, nWinBits)
+{
+ init();
+}
+
+extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeSvxBmpNumValueSet(Window *pParent, VclBuilder::stringmap &)
+{
+ return new SvxBmpNumValueSet(pParent, WB_TABSTOP);
+}
+
void SvxBmpNumValueSet::init()
{
+ SvxNumValueSet::init(NUM_PAGETYPE_BMP);
bGrfNotFound = sal_False;
GalleryExplorer::BeginLocking(GALLERY_THEME_BULLETS);
SetStyle( GetStyle() | WB_VSCROLL );