https://bugs.documentfoundation.org/show_bug.cgi?id=138651

Mike Kaganski <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |WONTFIX

--- Comment #3 from Mike Kaganski <[email protected]> ---
Saving (or exporting) to the same location is exactly pretending that the
format is considered editable and supported read-write format. This is not true
for PDF. For now the request is WONTFIX.

However, this is exactly the task for custom macros, when someone has some
specific needs, and understands that their workflow has limitations, but needs
something that is not supported by the program. Here is such a macro, which you
may put to common library for your users, and create a button for it:

Sub ExportAsSelf
    doc = ThisComponent
    If doc.hasLocation and not doc.isReadonly Then
      url = doc.getLocation
      doc.storeToURL(url, array())
      doc.setModified(false)
    End If
End Sub

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to