aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <unknown>2009-04-16 09:31:34 +0000
committernyamatongwe <unknown>2009-04-16 09:31:34 +0000
commite59f78d0a04cf7c9a2b422da634c0b02ef88ee31 (patch)
tree63e3469e0cc1b9935f3e4492ab903c2a48e3dd3a
parenta325c68ec68dcc879929db0299f633acf34ab899 (diff)
downloadscintilla-mirror-e59f78d0a04cf7c9a2b422da634c0b02ef88ee31.tar.gz
Reverted last change for bug #2722617 on advice of Eric.
-rw-r--r--macosx/ScintillaMacOSX.cxx4
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;