summaryrefslogtreecommitdiffstats
path: root/svx/source/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-01-11 16:37:01 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-01-11 20:18:19 +0000
commit3a81e90a45e361bef3dbacf533f6a5ddf7e901fa (patch)
tree467702c91dc60d5e159d1650109b46e34b62f5d1 /svx/source/inc
parentlongparas: convert GetMaxVisChars from xub_StrLen to sal_Int32 (diff)
downloadcore-3a81e90a45e361bef3dbacf533f6a5ddf7e901fa.tar.gz
core-3a81e90a45e361bef3dbacf533f6a5ddf7e901fa.zip
longparas: lift 16bit max edit length
Change-Id: Ide74f0a48f06cbe9539f16ef6c6d04bba043dcf9
Diffstat (limited to 'svx/source/inc')
-rw-r--r--svx/source/inc/gridcell.hxx6
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 );
};
//==================================================================