summaryrefslogtreecommitdiff
path: root/cui/source
diff options
context:
space:
mode:
authorMuhammet Kara <muhammet.kara@collabora.com>2020-02-01 14:20:44 +0300
committerMuhammet Kara <muhammet.kara@collabora.com>2020-02-01 14:13:49 +0100
commit08edc74a6b6ccf0d4d1560f57ec99a1ad9b390ce (patch)
tree29a5f7f1b80cb763a888834f72a3f0cc3901c46b /cui/source
parentce9924bf47dc99aa207caeea6155f464319515d3 (diff)
sal_uLong to size_t for sizeof related types
Change-Id: I00055ffd7b79d2e5637b69390ca516f11b0cffd9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87801 Tested-by: Jenkins Reviewed-by: Muhammet Kara <muhammet.kara@collabora.com>
Diffstat (limited to 'cui/source')
-rw-r--r--cui/source/customize/acccfg.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/customize/acccfg.cxx b/cui/source/customize/acccfg.cxx
index cb1ed554d501..ca602f8e96be 100644
--- a/cui/source/customize/acccfg.cxx
+++ b/cui/source/customize/acccfg.cxx
@@ -1032,8 +1032,8 @@ void SfxAcceleratorConfigPage::Init(const uno::Reference<ui::XAcceleratorConfigu
}
// Map the VCL hardcoded key codes and mark them as not changeable
- sal_uLong c3 = Application::GetReservedKeyCodeCount();
- sal_uLong i3 = 0;
+ size_t c3 = Application::GetReservedKeyCodeCount();
+ size_t i3 = 0;
for (i3 = 0; i3 < c3; ++i3)
{
const vcl::KeyCode* pKeyCode = Application::GetReservedKeyCode(i3);