summaryrefslogtreecommitdiff
path: root/fpicker/source/win32/filepicker/asyncrequests.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-10-14 16:55:19 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-10-16 14:19:12 +0000
commit432e3162e6cf4e90137699d45934b5db56a89aaf (patch)
treea9e0e22a20591dde6f0a14aa8861ad0ce8c2b28f /fpicker/source/win32/filepicker/asyncrequests.cxx
parent5f2bf2ce3ce2b5614ceaa454bffb3ce0623ce48a (diff)
clang-cl loplugin: fpicker
Change-Id: Ib19175affd48610fc164a996d609b369256d4f72 Reviewed-on: https://gerrit.libreoffice.org/29865 Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'fpicker/source/win32/filepicker/asyncrequests.cxx')
-rw-r--r--fpicker/source/win32/filepicker/asyncrequests.cxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/fpicker/source/win32/filepicker/asyncrequests.cxx b/fpicker/source/win32/filepicker/asyncrequests.cxx
index 089beca54d4a..e3e97a0e090b 100644
--- a/fpicker/source/win32/filepicker/asyncrequests.cxx
+++ b/fpicker/source/win32/filepicker/asyncrequests.cxx
@@ -29,7 +29,7 @@ static void lcl_sleep( ::osl::Condition& aCondition,
::sal_Int32 nMilliSeconds )
{
if (nMilliSeconds < 1)
- aCondition.wait(0);
+ aCondition.wait();
else
{
TimeValue aTime;
@@ -61,7 +61,7 @@ void Request::notify()
AsyncRequests::AsyncRequests(const RequestHandlerRef& rHandler)
: ::cppu::BaseMutex( )
, ::osl::Thread ( )
- , m_bFinish (sal_False)
+ , m_bFinish (false)
, m_rHandler (rHandler )
, m_lRequests ( )
{
@@ -71,7 +71,7 @@ AsyncRequests::~AsyncRequests()
{
// SYNCHRONIZED ->
::osl::ResettableMutexGuard aLock(m_aMutex);
- m_bFinish = sal_True;
+ m_bFinish = true;
aLock.clear();
// <- SYNCHRONIZED
@@ -107,7 +107,7 @@ void AsyncRequests::triggerRequestBlocked(const RequestRef& rRequest)
triggerJobExecution();
- rRequest->wait(Request::WAIT_INFINITE);
+ rRequest->wait();
}
void AsyncRequests::triggerRequestNonBlocked(const RequestRef& rRequest)
@@ -129,7 +129,7 @@ void AsyncRequests::triggerRequestDirectly(const RequestRef& rRequest)
aLock.clear();
// <- SYNCHRONIZED
- if (rHandler != NULL)
+ if (rHandler != nullptr)
rHandler->doRequest(rRequest);
}
@@ -157,11 +157,11 @@ void SAL_CALL AsyncRequests::run()
// SYNCHRONIZED ->
::osl::ResettableMutexGuard aLock(m_aMutex);
RequestHandlerRef rHandler = m_rHandler;
- sal_Bool bFinished = m_bFinish;
+ bool bFinished = m_bFinish;
aLock.clear();
// <- SYNCHRONIZED
- if (rHandler != NULL)
+ if (rHandler != nullptr)
rHandler->before();
while ( ! bFinished)
@@ -180,21 +180,21 @@ void SAL_CALL AsyncRequests::run()
aLock.clear();
// <- SYNCHRONIZED
- if (rRequest == NULL)
+ if (rRequest == nullptr)
{
lcl_sleep(maWait, TIME_TO_WAIT_FOR_NEW_REQUESTS);
maWait.reset();
continue;
}
- if (rHandler != NULL)
+ if (rHandler != nullptr)
{
rHandler->doRequest(rRequest);
rRequest->notify();
}
}
- if (rHandler != NULL)
+ if (rHandler != nullptr)
rHandler->after();
}