diff options
author | nyamatongwe <devnull@localhost> | 2009-04-16 09:31:34 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2009-04-16 09:31:34 +0000 |
commit | 11b81e9bcf0fcb2113d4994ca77ede2155283bfb (patch) | |
tree | 63e3469e0cc1b9935f3e4492ab903c2a48e3dd3a /macosx/ScintillaMacOSX.cxx | |
parent | 63a7fccc15cc998e19d6bb99c545714ab896159c (diff) | |
download | scintilla-mirror-11b81e9bcf0fcb2113d4994ca77ede2155283bfb.tar.gz |
Reverted last change for bug #2722617 on advice of Eric.
Diffstat (limited to 'macosx/ScintillaMacOSX.cxx')
-rw-r--r-- | macosx/ScintillaMacOSX.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/macosx/ScintillaMacOSX.cxx b/macosx/ScintillaMacOSX.cxx index 7b789af95..410d105d9 100644 --- a/macosx/ScintillaMacOSX.cxx +++ b/macosx/ScintillaMacOSX.cxx @@ -666,10 +666,8 @@ void ScintillaMacOSX::SetPasteboardData(PasteboardRef &theClipboard, const Selec } data = CFStringCreateExternalRepresentation ( kCFAllocatorDefault, string, kCFStringEncodingUnicode, 0 ); if (data) { - // Fixes http://bugs.activestate.com/show_bug.cgi?id=81340. - // See the bug for details PasteboardPutItemFlavor( theClipboard, (PasteboardItemID)1, - CFSTR("public.utf16-external-plain-text"), + CFSTR("public.utf16-plain-text"), data, 0 ); CFRelease(data); data = NULL; |