summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-01-14 10:09:17 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-01-14 10:53:30 +0000
commitf619315ae3f29d674042b62dfc1c11635817781a (patch)
tree26526bbcb0a2c675a53678a40c3454aff516f17a /include
parentec3085d6256959722dca64c0df71487177cb4db3 (diff)
longparas: bump nLen to 32bit
Change-Id: I49621bc3887baf8fcee17559818193325b83f27d
Diffstat (limited to 'include')
-rw-r--r--include/vcl/textdata.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/vcl/textdata.hxx b/include/vcl/textdata.hxx
index f80c53142ed5..afd4f102c267 100644
--- a/include/vcl/textdata.hxx
+++ b/include/vcl/textdata.hxx
@@ -140,16 +140,16 @@ struct TEIMEInfos
{
OUString aOldTextAfterStartPos;
sal_uInt16* pAttribs;
- TextPaM aPos;
- sal_uInt16 nLen;
- sal_Bool bCursor;
- sal_Bool bWasCursorOverwrite;
+ TextPaM aPos;
+ sal_Int32 nLen;
+ bool bCursor;
+ bool bWasCursorOverwrite;
- TEIMEInfos( const TextPaM& rPos, const OUString& rOldTextAfterStartPos );
- ~TEIMEInfos();
+ TEIMEInfos(const TextPaM& rPos, const OUString& rOldTextAfterStartPos);
+ ~TEIMEInfos();
- void CopyAttribs( const sal_uInt16* pA, sal_uInt16 nL );
- void DestroyAttribs();
+ void CopyAttribs(const sal_uInt16* pA, sal_Int32 nL);
+ void DestroyAttribs();
};
// ----------------- Wrapper for old Tools List -------------------