diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-24 17:09:15 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-25 00:26:43 +0000 |
commit | 295bc8703ff5d5133f18ae2b25dc3d88cdfffa93 (patch) | |
tree | 4068dacf4e65fcf6bd21161440bfcca040e4634b /basctl | |
parent | 553473945b6789cb757ec69aabba6b87c4854916 (diff) |
basic: remove use of sal_uIntptr in favor of more appropriate type
Change-Id: Ie878f43c7245838519fe7477b039827b079dde63
Reviewed-on: https://gerrit.libreoffice.org/8214
Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/baside2b.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basctl/source/basicide/baside2b.cxx b/basctl/source/basicide/baside2b.cxx index 51094d002fba..da3b51c5e5ed 100644 --- a/basctl/source/basicide/baside2b.cxx +++ b/basctl/source/basicide/baside2b.cxx @@ -111,7 +111,7 @@ OUString getTextEngineText (ExtTextEngine& rEngine) aMemStream.SetStreamCharSet( RTL_TEXTENCODING_UTF8 ); aMemStream.SetLineDelimiter( LINEEND_LF ); rEngine.Write( aMemStream ); - sal_uLong nSize = aMemStream.Tell(); + sal_Size nSize = aMemStream.Tell(); OUString aText( (const sal_Char*)aMemStream.GetData(), nSize, RTL_TEXTENCODING_UTF8 ); return aText; |