diff options
Diffstat (limited to 'wx+/file_drop.cpp')
-rwxr-xr-x | wx+/file_drop.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wx+/file_drop.cpp b/wx+/file_drop.cpp index cab848b9..f951ca3c 100755 --- a/wx+/file_drop.cpp +++ b/wx+/file_drop.cpp @@ -37,7 +37,7 @@ private: //wxPoint clientDropPos(x, y)
std::vector<Zstring> filePaths;
for (const wxString& file : fileArray)
- filePaths.push_back(utfCvrtTo<Zstring>(file));
+ filePaths.push_back(utfTo<Zstring>(file));
//create a custom event on drop window: execute event after file dropping is completed! (after mouse is released)
if (wxEvtHandler* handler = dropWindow_.GetEventHandler())
|