summaryrefslogtreecommitdiff
path: root/include/vcl/throbber.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/vcl/throbber.hxx')
-rw-r--r--include/vcl/throbber.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/vcl/throbber.hxx b/include/vcl/throbber.hxx
index 78bcbf98862b..80c9d7dd764a 100644
--- a/include/vcl/throbber.hxx
+++ b/include/vcl/throbber.hxx
@@ -54,8 +54,8 @@ public:
void setStepTime( sal_Int32 nStepTime ) { mnStepTime = nStepTime; }
sal_Int32 getStepTime() const { return mnStepTime; }
- void setRepeat( sal_Bool bRepeat ) { mbRepeat = bRepeat; }
- sal_Bool getRepeat() const { return mbRepeat; }
+ void setRepeat( bool bRepeat ) { mbRepeat = bRepeat; }
+ bool getRepeat() const { return mbRepeat; }
// animation control
void start();
@@ -79,7 +79,7 @@ private:
private:
::std::vector< Image > maImageList;
- sal_Bool mbRepeat;
+ bool mbRepeat;
sal_Int32 mnStepTime;
sal_Int32 mnCurStep;
sal_Int32 mnStepCount;