diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-01-11 16:37:01 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-01-11 20:18:19 +0000 |
commit | 3a81e90a45e361bef3dbacf533f6a5ddf7e901fa (patch) | |
tree | 467702c91dc60d5e159d1650109b46e34b62f5d1 /svx/source/inc | |
parent | f8f18871b0293e8a8b5a9fa24a99e44902946ff4 (diff) |
longparas: lift 16bit max edit length
Change-Id: Ide74f0a48f06cbe9539f16ef6c6d04bba043dcf9
Diffstat (limited to 'svx/source/inc')
-rw-r--r-- | svx/source/inc/gridcell.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/inc/gridcell.hxx b/svx/source/inc/gridcell.hxx index e8eed6f11a4b..df3d10d11ecf 100644 --- a/svx/source/inc/gridcell.hxx +++ b/svx/source/inc/gridcell.hxx @@ -381,11 +381,11 @@ protected: virtual void implAdjustGenericFieldSetting( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& _rxModel ); protected: - inline void implSetMaxTextLen( sal_Int16 _nMaxLen ) + void implSetMaxTextLen( sal_Int16 _nMaxLen ) { implSetEffectiveMaxTextLen( _nMaxLen ? _nMaxLen : EDIT_NOLIMIT ); } - virtual void implSetEffectiveMaxTextLen( sal_Int16 _nMaxLen ); + virtual void implSetEffectiveMaxTextLen( sal_Int32 _nMaxLen ); }; //================================================================== @@ -419,7 +419,7 @@ protected: virtual sal_Bool commitControl( ); virtual void updateFromModel( ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > _rxModel ); // DbLimitedLengthField - virtual void implSetEffectiveMaxTextLen( sal_Int16 _nMaxLen ); + virtual void implSetEffectiveMaxTextLen( sal_Int32 _nMaxLen ); }; //================================================================== |