diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-06-15 16:16:33 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-06-15 16:37:24 +0100 |
commit | 1792493e765f8027c2605bd72b9978c6769a262d (patch) | |
tree | 6c031053e518f3b7b58a1b98a79c648d01cb07ba /desktop/source | |
parent | 4f61b652323e1bde5c45bc9dece3c61b2f69b83d (diff) |
Resolves: tdf#91603 if we cancel/discard recovery dialog, continue as normal
Change-Id: Ifd5df74063bcaf2f3a198b090ed2126449d7b8f8
Diffstat (limited to 'desktop/source')
-rw-r--r-- | desktop/source/app/app.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx index 05c3f9b6d9f5..e4845d40636f 100644 --- a/desktop/source/app/app.cxx +++ b/desktop/source/app/app.cxx @@ -1121,7 +1121,7 @@ bool impl_callRecoveryUI(bool bEmergencySave , css::uno::Any aRet = xRecoveryUI->dispatchWithReturnValue(aURL, css::uno::Sequence< css::beans::PropertyValue >()); bool bRet = false; aRet >>= bRet; - return !bEmergencySave || bRet; + return bRet; } } |