Fixed typo: asynchronous shutdown is now working (ie. Deskbar doesn't block
the shutdown process any longer). git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15922 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2005, Ingo Weinhold, [email protected].
|
* Copyright 2005-2006, Ingo Weinhold, [email protected].
|
||||||
* Distributed under the terms of the MIT License.
|
* Distributed under the terms of the MIT License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -1231,9 +1231,9 @@ ShutdownProcess::_WorkerDoShutdown()
|
|||||||
// If we are here, the shutdown process has been initiated successfully,
|
// If we are here, the shutdown process has been initiated successfully,
|
||||||
// that is, if an asynchronous BRoster::Shutdown() was requested, we
|
// that is, if an asynchronous BRoster::Shutdown() was requested, we
|
||||||
// notify the caller at this point.
|
// notify the caller at this point.
|
||||||
bool synchronously;
|
bool synchronous;
|
||||||
if (fRequest->FindBool("synchronously", &synchronously) == B_OK
|
if (fRequest->FindBool("synchronous", &synchronous) == B_OK
|
||||||
&& !synchronously) {
|
&& !synchronous) {
|
||||||
_SendReply(B_OK);
|
_SendReply(B_OK);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user