summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorBugra <bugrakurt26@gmail.com>2020-03-04 15:36:04 +0300
committerMichael Stahl <michael.stahl@cib.de>2020-03-20 17:57:09 +0100
commit337049d4642be4349dd8af3021e05165572d0bfa (patch)
tree1d8e9fc70e7bc531bb01dd0ec352903eb1eb9c45 /dbaccess
parent1be7a056ff843e8e9cb80890ecf7d3aa852557e9 (diff)
tdf#114441: Convert use of sal_uLong to better integer types
Change-Id: I9b062372f394021140bedc65e7f2e3827eb84716 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89964 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@cib.de>
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/ui/app/AppIconControl.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/app/AppIconControl.cxx b/dbaccess/source/ui/app/AppIconControl.cxx
index 2eb3b6c4ce38..831d20cf4a1f 100644
--- a/dbaccess/source/ui/app/AppIconControl.cxx
+++ b/dbaccess/source/ui/app/AppIconControl.cxx
@@ -65,8 +65,8 @@ OApplicationIconControl::~OApplicationIconControl()
void OApplicationIconControl::dispose()
{
- sal_uLong nCount = GetEntryCount();
- for ( sal_uLong i = 0; i < nCount; ++i )
+ sal_Int32 nCount = GetEntryCount();
+ for ( sal_Int32 i = 0; i < nCount; ++i )
{
SvxIconChoiceCtrlEntry* pEntry = GetEntry( i );
if ( pEntry )