summaryrefslogtreecommitdiff
path: root/wx+/file_drop.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:28:01 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:28:01 +0200
commitfe9eb89ebc1b3c33cbac00a3fa095a14faef9113 (patch)
tree8a3bb620a9acb83fe0057061a86e8f2cb91a9fe1 /wx+/file_drop.h
parent5.21 (diff)
downloadFreeFileSync-fe9eb89ebc1b3c33cbac00a3fa095a14faef9113.tar.gz
FreeFileSync-fe9eb89ebc1b3c33cbac00a3fa095a14faef9113.tar.bz2
FreeFileSync-fe9eb89ebc1b3c33cbac00a3fa095a14faef9113.zip
5.22
Diffstat (limited to 'wx+/file_drop.h')
-rw-r--r--wx+/file_drop.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/wx+/file_drop.h b/wx+/file_drop.h
index fb56c5d9..1cc24ebd 100644
--- a/wx+/file_drop.h
+++ b/wx+/file_drop.h
@@ -97,12 +97,9 @@ private:
{
std::vector<wxString> filenames(fileArray.begin(), fileArray.end());
if (!filenames.empty())
- {
//create a custom event on drop window: execute event after file dropping is completed! (after mouse is released)
- FileDropEvent evt(filenames, dropWindow_, wxPoint(x, y));
if (wxEvtHandler* handler = dropWindow_.GetEventHandler())
- handler->AddPendingEvent(evt);
- }
+ handler->AddPendingEvent(FileDropEvent(filenames, dropWindow_, wxPoint(x, y)));
return true;
}
bgstack15