summaryrefslogtreecommitdiff
path: root/include/sfx2/progress.hxx
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 /include/sfx2/progress.hxx
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 'include/sfx2/progress.hxx')
-rw-r--r--include/sfx2/progress.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/sfx2/progress.hxx b/include/sfx2/progress.hxx
index 882d38d8d053..9153dae3758c 100644
--- a/include/sfx2/progress.hxx
+++ b/include/sfx2/progress.hxx
@@ -37,19 +37,19 @@ struct SvProgressArg;
class SFX2_DLLPUBLIC SfxProgress
{
std::unique_ptr< SfxProgress_Impl > pImpl;
- sal_uIntPtr nVal;
+ sal_uInt32 nVal;
bool bSuspended;
public:
SfxProgress( SfxObjectShell* pObjSh,
const rtl::OUString& rText,
- sal_uIntPtr nRange,
+ sal_uInt32 nRange,
bool bWait = true);
virtual ~SfxProgress();
- void SetStateText( sal_uIntPtr nVal, const rtl::OUString &rVal );
- void SetState( sal_uIntPtr nVal, sal_uIntPtr nNewRange = 0 );
- sal_uIntPtr GetState() const { return nVal; }
+ void SetStateText( sal_uInt32 nVal, const rtl::OUString &rVal );
+ void SetState( sal_uInt32 nVal, sal_uInt32 nNewRange = 0 );
+ sal_uInt32 GetState() const { return nVal; }
void Resume();
void Suspend();