summaryrefslogtreecommitdiffstats
path: root/library/tkdnd_windows.tcl
diff options
context:
space:
mode:
authorpetasis <petasis@f3661a36-4baa-549a-d6c7-40e0ffef350e>2010-08-03 20:34:33 (GMT)
committerpetasis <petasis@f3661a36-4baa-549a-d6c7-40e0ffef350e>2010-08-03 20:34:33 (GMT)
commit9cae0e68edc6020067a63490089a617f66987c2b (patch)
tree25b4675d752c8c3913e1f0235af558d7cd37879b /library/tkdnd_windows.tcl
parentdcf3ee0d04be98f078a8c09cbaae7bf13d64f69c (diff)
downloadtkdnd-9cae0e68edc6020067a63490089a617f66987c2b.zip
tkdnd-9cae0e68edc6020067a63490089a617f66987c2b.tar.gz
tkdnd-9cae0e68edc6020067a63490089a617f66987c2b.tar.bz2
Fixes for UNICODE
Diffstat (limited to 'library/tkdnd_windows.tcl')
-rw-r--r--library/tkdnd_windows.tcl2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/tkdnd_windows.tcl b/library/tkdnd_windows.tcl
index 03db167..32b0187 100644
--- a/library/tkdnd_windows.tcl
+++ b/library/tkdnd_windows.tcl
@@ -309,7 +309,7 @@ proc olednd::_platform_independent_types { types } {
# ----------------------------------------------------------------------------
proc olednd::_normalise_data { type data } {
switch $type {
- CF_HDROP {return [encoding convertfrom $data]}
+ CF_HDROP {return $data}
DND_Text {return [list CF_UNICODETEXT CF_TEXT]}
DND_Files {return [list CF_HDROP]}
default {return $data}