summaryrefslogtreecommitdiffstats
path: root/include/xmloff/ProgressBarHelper.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-27 16:42:51 +0200
committerNoel Grandin <noel@peralex.com>2014-03-31 12:35:53 +0200
commit3f60a32aa2413ca67eb243a3ba91abd3327a07b3 (patch)
tree0ca0517f15f0eab898b8fe1c1e8bbcef51e5b40b /include/xmloff/ProgressBarHelper.hxx
parentxmloff: sal_Bool->bool (diff)
downloadcore-3f60a32aa2413ca67eb243a3ba91abd3327a07b3.tar.gz
core-3f60a32aa2413ca67eb243a3ba91abd3327a07b3.zip
xmloff: sal_Bool->bool
Change-Id: If694d16088ae0dcdc8b99797eed575c90d646fe5
Diffstat (limited to 'include/xmloff/ProgressBarHelper.hxx')
-rw-r--r--include/xmloff/ProgressBarHelper.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/xmloff/ProgressBarHelper.hxx b/include/xmloff/ProgressBarHelper.hxx
index 08a663dde267..827e35f6f913 100644
--- a/include/xmloff/ProgressBarHelper.hxx
+++ b/include/xmloff/ProgressBarHelper.hxx
@@ -36,23 +36,23 @@ class XMLOFF_DLLPUBLIC ProgressBarHelper
sal_Int32 nRange;
sal_Int32 nReference;
sal_Int32 nValue;
- sal_Bool bStrict;
+ bool bStrict;
// #96469#; if the value goes over the Range the progressbar starts again
- sal_Bool bRepeat;
+ bool bRepeat;
#ifdef DBG_UTIL
- sal_Bool bFailure;
+ bool bFailure;
#endif
public:
ProgressBarHelper(const ::com::sun::star::uno::Reference < ::com::sun::star::task::XStatusIndicator>& xStatusIndicator,
- const sal_Bool bStrict);
+ const bool bStrict);
~ProgressBarHelper();
void SetText(OUString& rText) { if (xStatusIndicator.is()) xStatusIndicator->setText(rText); }
void SetRange(sal_Int32 nVal) { nRange = nVal; }
void SetReference(sal_Int32 nVal) { nReference = nVal; }
void SetValue(sal_Int32 nValue);
- void SetRepeat(sal_Bool bValue) { bRepeat = bValue; }
+ void SetRepeat(bool bValue) { bRepeat = bValue; }
inline void Increment(sal_Int32 nInc = 1) { SetValue( nValue+nInc ); }
void End() { if (xStatusIndicator.is()) xStatusIndicator->end(); }
@@ -62,7 +62,7 @@ public:
sal_Int32 GetReference() { return nReference; }
sal_Int32 GetValue() { return nValue; }
- sal_Bool GetRepeat() { return bRepeat; }
+ bool GetRepeat() { return bRepeat; }
};
#endif