summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
Diffstat (limited to 'svx')
-rw-r--r--svx/inc/svx/numvset.hxx4
-rw-r--r--svx/source/dialog/svxbmpnumvalueset.cxx8
2 files changed, 6 insertions, 6 deletions
diff --git a/svx/inc/svx/numvset.hxx b/svx/inc/svx/numvset.hxx
index 442addc79cc6..030f0231b47f 100644
--- a/svx/inc/svx/numvset.hxx
+++ b/svx/inc/svx/numvset.hxx
@@ -69,7 +69,7 @@ class SVX_DLLPUBLIC SvxNumValueSet : public ValueSet
public:
SvxNumValueSet( Window* pParent, const ResId& rResId, sal_uInt16 nType );
- SvxNumValueSet( Window* pParent, sal_uInt16 nType );
+ SvxNumValueSet( Window* pParent, WinBits nWinStyle, sal_uInt16 nType );
~SvxNumValueSet();
virtual void UserDraw( const UserDrawEvent& rUDEvt );
@@ -108,7 +108,7 @@ class SVX_DLLPUBLIC SvxBmpNumValueSet : public SvxNumValueSet
public:
SvxBmpNumValueSet(Window* pParent, const ResId& rResId);
- SvxBmpNumValueSet(Window* pParent);
+ SvxBmpNumValueSet(Window* pParent, WinBits nWinStyle);
~SvxBmpNumValueSet();
virtual void UserDraw( const UserDrawEvent& rUDEvt );
diff --git a/svx/source/dialog/svxbmpnumvalueset.cxx b/svx/source/dialog/svxbmpnumvalueset.cxx
index 741caf9c9c23..72063f93dd5d 100644
--- a/svx/source/dialog/svxbmpnumvalueset.cxx
+++ b/svx/source/dialog/svxbmpnumvalueset.cxx
@@ -408,8 +408,8 @@ SvxNumValueSet::SvxNumValueSet( Window* pParent, const ResId& rResId, sal_uInt16
init(nType);
}
-SvxNumValueSet::SvxNumValueSet( Window* pParent, sal_uInt16 nType )
- : ValueSet( pParent )
+SvxNumValueSet::SvxNumValueSet( Window* pParent, WinBits nWinStyle, sal_uInt16 nType )
+ : ValueSet( pParent, nWinStyle )
{
init(nType);
}
@@ -481,8 +481,8 @@ SvxBmpNumValueSet::SvxBmpNumValueSet( Window* pParent, const ResId& rResId )
init();
}
-SvxBmpNumValueSet::SvxBmpNumValueSet( Window* pParent )
- : SvxNumValueSet( pParent, NUM_PAGETYPE_BMP )
+SvxBmpNumValueSet::SvxBmpNumValueSet( Window* pParent, WinBits nWinStyle )
+ : SvxNumValueSet( pParent, nWinStyle, NUM_PAGETYPE_BMP )
{
init();
}