summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Mehrbrodt <s.mehrbrodt@gmail.com>2014-08-31 22:37:47 +0200
committerLionel Elie Mamane <lionel@mamane.lu>2014-09-01 01:10:02 -0500
commit8cf89c24906c6d50a3c15f1ebef4df071ad6ec79 (patch)
tree14d40a7218f0ca628eb25bfe2ad40ec085fbeff9
parent314241ed0e1e018560a5f0f0afdd18f107bc68e5 (diff)
fdo#83311 Fix infobar for documents with read-only property
Change-Id: Ic813ab3eb74a088b60b4dc3dcd56e7b19683190c Reviewed-on: https://gerrit.libreoffice.org/11220 Reviewed-by: Lionel Elie Mamane <lionel@mamane.lu> Tested-by: Lionel Elie Mamane <lionel@mamane.lu>
-rw-r--r--sfx2/source/view/viewfrm.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/sfx2/source/view/viewfrm.cxx b/sfx2/source/view/viewfrm.cxx
index efef8f4106ff..40d4b67603b0 100644
--- a/sfx2/source/view/viewfrm.cxx
+++ b/sfx2/source/view/viewfrm.cxx
@@ -403,6 +403,9 @@ void SfxViewFrame::ExecReload_Impl( SfxRequest& rReq )
pSh->SetModifyPasswordEntered();
}
+ // Remove infobar if document was read-only (after password check)
+ RemoveInfoBar("readonly");
+
nOpenMode = pSh->IsOriginallyReadOnlyMedium() ? SFX_STREAM_READONLY : SFX_STREAM_READWRITE;
// if only the view was in the readonly mode then there is no need to do the reload
@@ -416,7 +419,7 @@ void SfxViewFrame::ExecReload_Impl( SfxRequest& rReq )
return;
}
- RemoveInfoBar("readonly");
+
pSh->SetReadOnlyUI( false );
}