summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-08-16 17:53:45 +0200
committerCaolán McNamara <caolanm@redhat.com>2012-08-17 13:31:23 +0100
commit1b153ad73e618dc1600394ffbd98ad4b8bd918cd (patch)
tree242d11efa5df4fe44fb13f20072ddf8971269d30
parentRevert "fdo#49919 Don't default to desktop pollution" (diff)
downloadcore-1b153ad73e618dc1600394ffbd98ad4b8bd918cd.tar.gz
core-1b153ad73e618dc1600394ffbd98ad4b8bd918cd.zip
fdo#53280: Reset read-only UI after successful Save As
Change-Id: Ica9214d3655df27bbb259c463a7589a842f01c47 Signed-off-by: Michael Meeks <michael.meeks@suse.com> (cherry picked from commit 9c2588950be1d4b3051586359175b5a643fee880) Signed-off-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r--sfx2/source/doc/objserv.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/sfx2/source/doc/objserv.cxx b/sfx2/source/doc/objserv.cxx
index 7b4475af6753..b305a82948a4 100644
--- a/sfx2/source/doc/objserv.cxx
+++ b/sfx2/source/doc/objserv.cxx
@@ -705,6 +705,11 @@ void SfxObjectShell::ExecFile_Impl(SfxRequest &rReq)
nErrorCode = ( lErr != ERRCODE_IO_ABORT ) && ( nErrorCode == ERRCODE_NONE ) ? nErrorCode : lErr;
}
+ if (nId == SID_SAVEASDOC && nErrorCode == ERRCODE_NONE)
+ {
+ SetReadOnlyUI(false);
+ }
+
rReq.SetReturnValue( SfxBoolItem(0, nErrorCode == ERRCODE_NONE ) );
ResetError();