summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authortymyjan <tymyjan@yahoo.co.uk>2016-07-08 21:55:00 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-07-09 07:53:15 +0000
commit5a6ab81651a98dd726ab7d40101dc81f62895fd4 (patch)
tree6740dd98e048e1e0fa1d66e253a3e2e96e0a33e9 /sfx2
parent81889ab4ce49e83ef4914dbff403b839c718a08a (diff)
tdf#75280 Cleaning up of sal_uIntPtr usage #2
Change-Id: I673d99a61b6805e8ad2ef91736839620283a898c Reviewed-on: https://gerrit.libreoffice.org/27063 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/bastyp/progress.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/source/bastyp/progress.cxx b/sfx2/source/bastyp/progress.cxx
index df5a8fea3247..a9bcff553e61 100644
--- a/sfx2/source/bastyp/progress.cxx
+++ b/sfx2/source/bastyp/progress.cxx
@@ -119,7 +119,7 @@ SfxProgress::SfxProgress
const OUString& rText, /* Text, which appears before the Statusmonitor
in the status line */
- sal_uIntPtr nRange, /* Max value for range */
+ sal_uInt32 nRange, /* Max value for range */
bool bWait /* Activate the wait-Pointer initially (TRUE) */
)
@@ -210,7 +210,7 @@ void SfxProgress::Stop()
void SfxProgress::SetStateText
(
- sal_uLong nNewVal, /* New value for the progress-bar */
+ sal_uInt32 nNewVal, /* New value for the progress-bar */
const OUString& rNewVal /* Status as Text */
)
@@ -221,9 +221,9 @@ void SfxProgress::SetStateText
void SfxProgress::SetState
(
- sal_uLong nNewVal, /* new value for the progress bar */
+ sal_uInt32 nNewVal, /* new value for the progress bar */
- sal_uLong nNewRange /* new maximum value, 0 for retaining the old */
+ sal_uInt32 nNewRange /* new maximum value, 0 for retaining the old */
)
/* [Description]