summaryrefslogtreecommitdiff
path: root/sw/source/uibase/inc/actctrl.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/uibase/inc/actctrl.hxx')
-rw-r--r--sw/source/uibase/inc/actctrl.hxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/sw/source/uibase/inc/actctrl.hxx b/sw/source/uibase/inc/actctrl.hxx
index 7a24e98273ba..a0dd15ac380a 100644
--- a/sw/source/uibase/inc/actctrl.hxx
+++ b/sw/source/uibase/inc/actctrl.hxx
@@ -31,8 +31,10 @@ protected:
void Action();
virtual bool Notify( NotifyEvent& rNEvt ) override;
public:
- NumEditAction( vcl::Window* pParent, const ResId& rResId ) :
- NumericField(pParent, rResId) {}
+ NumEditAction(vcl::Window* pParent, WinBits nBits)
+ : NumericField(pParent, nBits)
+ {
+ }
void SetActionHdl( const Link<NumEditAction&,void>& rLink ) { aActionLink = rLink;}
};