summaryrefslogtreecommitdiff
path: root/vcl/source/app/idlemgr.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/app/idlemgr.cxx')
-rw-r--r--vcl/source/app/idlemgr.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/app/idlemgr.cxx b/vcl/source/app/idlemgr.cxx
index 419b5d05f4ef..4f7ba2306ce6 100644
--- a/vcl/source/app/idlemgr.cxx
+++ b/vcl/source/app/idlemgr.cxx
@@ -56,14 +56,14 @@ ImplIdleMgr::~ImplIdleMgr()
// -----------------------------------------------------------------------
-sal_Bool ImplIdleMgr::InsertIdleHdl( const Link& rLink, sal_uInt16 nPriority )
+bool ImplIdleMgr::InsertIdleHdl( const Link& rLink, sal_uInt16 nPriority )
{
size_t nPos = (size_t)-1;
size_t n = mpIdleList->size();
for ( size_t i = 0; i < n; ++i ) {
// we need to check each element to verify that rLink isn't in the array
if ( (*mpIdleList)[ i ]->maIdleHdl == rLink ) {
- return sal_False;
+ return false;
}
if ( nPriority <= (*mpIdleList)[ i ]->mnPriority ) {
nPos = i;
@@ -87,7 +87,7 @@ sal_Bool ImplIdleMgr::InsertIdleHdl( const Link& rLink, sal_uInt16 nPriority )
if ( !maTimer.IsActive() )
maTimer.Start();
- return sal_True;
+ return true;
}
// -----------------------------------------------------------------------