summaryrefslogtreecommitdiffstats
path: root/sc/inc/refreshtimer.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-12 12:23:18 +0200
committerNoel Grandin <noel@peralex.com>2014-02-14 14:15:03 +0200
commit12dcbbebedbd23c60109b9a8b23114a348424bdc (patch)
tree2f6a6d03ae61312f6a2358253558d2e678becb25 /sc/inc/refreshtimer.hxx
parentsal_Bool->bool (diff)
downloadcore-12dcbbebedbd23c60109b9a8b23114a348424bdc.tar.gz
core-12dcbbebedbd23c60109b9a8b23114a348424bdc.zip
sal_Bool->bool
Change-Id: I81500f49812cfa83356f3412cb75e232e6a25b23
Diffstat (limited to 'sc/inc/refreshtimer.hxx')
-rw-r--r--sc/inc/refreshtimer.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/inc/refreshtimer.hxx b/sc/inc/refreshtimer.hxx
index fc1eaecf8718..b8e24db1cb0f 100644
--- a/sc/inc/refreshtimer.hxx
+++ b/sc/inc/refreshtimer.hxx
@@ -31,8 +31,8 @@ class ScRefreshTimerControl
public:
ScRefreshTimerControl() : nBlockRefresh(0) {}
- void SetAllowRefresh( sal_Bool b );
- sal_Bool IsRefreshAllowed() const { return !nBlockRefresh; }
+ void SetAllowRefresh( bool b );
+ bool IsRefreshAllowed() const { return !nBlockRefresh; }
::osl::Mutex& GetMutex() { return aMutex; }
};
@@ -47,8 +47,8 @@ public:
virtual ~ScRefreshTimer();
ScRefreshTimer& operator=( const ScRefreshTimer& r );
- sal_Bool operator==( const ScRefreshTimer& r ) const;
- sal_Bool operator!=( const ScRefreshTimer& r ) const;
+ bool operator==( const ScRefreshTimer& r ) const;
+ bool operator!=( const ScRefreshTimer& r ) const;
void StartRefreshTimer();
void SetRefreshControl( ScRefreshTimerControl * const * pp );