sfx2/sdi/sfx.sdi |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 515ea6206b66b0b921cfc8520ef31168d2060b05
Author:     Mike Kaganski <[email protected]>
AuthorDate: Tue Jul 8 09:09:52 2025 +0200
Commit:     Mike Kaganski <[email protected]>
CommitDate: Tue Jul 8 11:51:56 2025 +0200

    Disable paste operations in read-only mode
    
    Some of paste variants were marked "ReadOnlyDoc = TRUE" likely
    by mistake.
    
    Change-Id: I2019840b37880ee8d073b07f1313ca26e574d266
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/187529
    Reviewed-by: Mike Kaganski <[email protected]>
    Tested-by: Jenkins

diff --git a/sfx2/sdi/sfx.sdi b/sfx2/sdi/sfx.sdi
index e3d3ba07a096..15238490292e 100644
--- a/sfx2/sdi/sfx.sdi
+++ b/sfx2/sdi/sfx.sdi
@@ -3210,7 +3210,7 @@ SfxVoidItem PasteOnlyText SID_PASTE_ONLY_TEXT
 [
     AutoUpdate = FALSE,
     FastCall = FALSE,
-    ReadOnlyDoc = TRUE,
+    ReadOnlyDoc = FALSE,
     Toggle = FALSE,
     Container = FALSE,
     RecordAbsolute = FALSE,
@@ -3227,7 +3227,7 @@ SfxVoidItem PasteOnlyFormula SID_PASTE_ONLY_FORMULA
 [
     AutoUpdate = FALSE,
     FastCall = FALSE,
-    ReadOnlyDoc = TRUE,
+    ReadOnlyDoc = FALSE,
     Toggle = FALSE,
     Container = FALSE,
     RecordAbsolute = FALSE,
@@ -3244,7 +3244,7 @@ SfxVoidItem PasteOnlyValue SID_PASTE_ONLY_VALUE
 [
     AutoUpdate = FALSE,
     FastCall = FALSE,
-    ReadOnlyDoc = TRUE,
+    ReadOnlyDoc = FALSE,
     Toggle = FALSE,
     Container = FALSE,
     RecordAbsolute = FALSE,
@@ -3295,7 +3295,7 @@ SfxVoidItem PasteTextImportDialog 
SID_PASTE_TEXTIMPORT_DIALOG
 [
     AutoUpdate = FALSE,
     FastCall = FALSE,
-    ReadOnlyDoc = TRUE,
+    ReadOnlyDoc = FALSE,
     Toggle = FALSE,
     Container = FALSE,
     RecordAbsolute = FALSE,

Reply via email to