summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--uui/source/iahndl.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/uui/source/iahndl.cxx b/uui/source/iahndl.cxx
index f98b56750a..46f7ebef3a 100644
--- a/uui/source/iahndl.cxx
+++ b/uui/source/iahndl.cxx
@@ -1189,7 +1189,7 @@ bool UUIInteractionHelper::handleDialogRequests(
aOwnLockOnDocumentRequest.TimeInfo,
rRequest->getContinuations(),
aOwnLockOnDocumentRequest.IsStoring ? UUI_DOC_OWN_SAVE_LOCK : UUI_DOC_OWN_LOAD_LOCK );
- return;
+ return true;
}
star::document::LockedOnSavingRequest aLockedOnSavingRequest;
@@ -1199,21 +1199,21 @@ bool UUIInteractionHelper::handleDialogRequests(
aLockedOnSavingRequest.UserInfo,
rRequest->getContinuations(),
UUI_DOC_SAVE_LOCK );
- return;
+ return true;
}
star::document::ChangedByOthersRequest aChangedByOthersRequest;
if (aAnyRequest >>= aChangedByOthersRequest )
{
handleChangedByOthersRequest( rRequest->getContinuations() );
- return;
+ return true;
}
star::document::LockFileIgnoreRequest aLockFileIgnoreRequest;
if (aAnyRequest >>= aLockFileIgnoreRequest )
{
handleLockFileIgnoreRequest( rRequest->getContinuations() );
- return;
+ return true;
}
return false;