summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2009-02-25 08:21:24 +0000
committerKurt Zenker <kz@openoffice.org>2009-02-25 08:21:24 +0000
commitc15e0a21f8f78f1f2cb3b0653f930ddbecc0adc0 (patch)
treeb21569acca1cb8671bb88d6c548852cfa1dc87ba
parent38666b34948f5ba0ab4c9b08aadc96461b7894cb (diff)
#i10000# missing return value
-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;