summaryrefslogtreecommitdiff
path: root/basctl/source/basicide/baside2.cxx
diff options
context:
space:
mode:
authorShubham Verma <lifemeansmore008@gmail.com>2018-02-23 00:21:07 +0530
committerMichael Stahl <mstahl@redhat.com>2018-02-27 17:51:42 +0100
commit0b49701fa5c22abba6b9b4a60ddd2720973dd858 (patch)
treefe3feb78388d8e6bf05f3a3f6378d7361595b54b /basctl/source/basicide/baside2.cxx
parent49c3bab770ea579d96aa3ea79e1d4ff304f42334 (diff)
tdf#114441 sal_uLong to better integer types
Change-Id: I55b45821cf67a99f97ba067a3d4923d76c19696e Reviewed-on: https://gerrit.libreoffice.org/50204 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'basctl/source/basicide/baside2.cxx')
-rw-r--r--basctl/source/basicide/baside2.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/basctl/source/basicide/baside2.cxx b/basctl/source/basicide/baside2.cxx
index 6d6ef01ed0a8..c7eb307b9500 100644
--- a/basctl/source/basicide/baside2.cxx
+++ b/basctl/source/basicide/baside2.cxx
@@ -420,7 +420,7 @@ void ModulWindow::LoadBasic()
if ( pStream )
{
AssertValidEditEngine();
- sal_uLong nLines = CalcLineCount( *pStream );
+ sal_uInt32 nLines = CalcLineCount( *pStream );
// nLines*4: ReadText/Formatting/Highlighting/Formatting
GetEditorWindow().CreateProgress( IDEResId(RID_STR_GENERATESOURCE), nLines*4 );
GetEditEngine()->SetUpdateMode( false );