diff options
author | Xisco Fauli <anistenis@gmail.com> | 2017-10-18 17:30:57 +0200 |
---|---|---|
committer | Thorsten Behrens <Thorsten.Behrens@CIB.de> | 2017-10-28 04:12:34 +0200 |
commit | 671182b8f59e8e390b79b7f3b35535b8c3ec1408 (patch) | |
tree | 52065e221eefc9b79fd6027384fb0c9999d6f777 | |
parent | d78b60fc7b7acb6675afe077968cd23586092c96 (diff) |
tdf#109343 Fix paste as .RTF on Mac
Change-Id: Ida0433437301ea2803373e534df3d42f67d6aff8
Reviewed-on: https://gerrit.libreoffice.org/43513
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Bartosz Kosiorek <gang65@poczta.onet.pl>
(cherry picked from commit dd0bc7323014c528fefb516cacae0591f270862a)
Reviewed-on: https://gerrit.libreoffice.org/43857
Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
-rw-r--r-- | vcl/osx/DataFlavorMapping.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/osx/DataFlavorMapping.cxx b/vcl/osx/DataFlavorMapping.cxx index 6db7d4105985..012889abfb60 100644 --- a/vcl/osx/DataFlavorMapping.cxx +++ b/vcl/osx/DataFlavorMapping.cxx @@ -111,7 +111,7 @@ namespace static const FlavorMap flavorMap[] = { { NSStringPboardType, "text/plain;charset=utf-16", "Unicode Text (UTF-16)", true }, - { NSRTFPboardType, "text/richtext", "Rich Text Format", false }, + { NSRTFPboardType, "text/rtf", "Rich Text Format", false }, { NSTIFFPboardType, "image/png", "Portable Network Graphics", false }, { NSHTMLPboardType, "text/html", "Plain Html", false }, { NSFilenamesPboardType, "application/x-openoffice-filelist;windows_formatname=\"FileList\"", "FileList", false }, |