Kaydet (Commit) 695f8416 authored tarafından Andrea Gelmini's avatar Andrea Gelmini Kaydeden (comit) Julien Nabet

Fix typo in code

Change-Id: I1e6d483e7cc7f03149fbd0a0f5f49a62677faecd
Reviewed-on: https://gerrit.libreoffice.org/65695
Tested-by: Jenkins
Reviewed-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
üst 96c9357e
...@@ -980,8 +980,8 @@ bool IpcThread::process(OString const & arguments, bool * waitProcessed) { ...@@ -980,8 +980,8 @@ bool IpcThread::process(OString const & arguments, bool * waitProcessed) {
aCmdLineArgs->getCwdUrl()); aCmdLineArgs->getCwdUrl());
m_handler->cProcessed.reset(); m_handler->cProcessed.reset();
pRequest->pcProcessed = &m_handler->cProcessed; pRequest->pcProcessed = &m_handler->cProcessed;
m_handler->mbSucces = false; m_handler->mbSuccess = false;
pRequest->mpbSuccess = &m_handler->mbSucces; pRequest->mpbSuccess = &m_handler->mbSuccess;
// Print requests are not dependent on the --invisible cmdline argument as they are // Print requests are not dependent on the --invisible cmdline argument as they are
// loaded with the "hidden" flag! So they are always checked. // loaded with the "hidden" flag! So they are always checked.
...@@ -1185,7 +1185,7 @@ void PipeIpcThread::execute() ...@@ -1185,7 +1185,7 @@ void PipeIpcThread::execute()
if (waitProcessed) if (waitProcessed)
{ {
m_handler->cProcessed.wait(); m_handler->cProcessed.wait();
bSuccess = m_handler->mbSucces; bSuccess = m_handler->mbSuccess;
} }
if (bSuccess) if (bSuccess)
{ {
......
...@@ -93,7 +93,7 @@ class RequestHandler: public salhelper::SimpleReferenceObject ...@@ -93,7 +93,7 @@ class RequestHandler: public salhelper::SimpleReferenceObject
/* condition to be set when the request has been processed */ /* condition to be set when the request has been processed */
::osl::Condition cProcessed; ::osl::Condition cProcessed;
/* receives if the processing was successful (may be false e.g. when shutting down) */ /* receives if the processing was successful (may be false e.g. when shutting down) */
bool mbSucces = false; bool mbSuccess = false;
/* condition to be set when the main event loop is ready /* condition to be set when the main event loop is ready
otherwise an error dialogs event loop could eat away otherwise an error dialogs event loop could eat away
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment