summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Changelog1
-rw-r--r--library/tkdnd_windows.tcl2
2 files changed, 2 insertions, 1 deletions
diff --git a/Changelog b/Changelog
index 81ee295..432cc0c 100644
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,5 @@
2010-08-03 Petasis George <petasis@iit.demokritos.gr>
+ * library/tkdnd_windows.tcl:
* win/OleDND.h: Fixes for compiling with UNICODE & _UNICODE.
2010-07-28 Petasis George <petasis@iit.demokritos.gr>
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}