diff options
Diffstat (limited to 'wx+')
-rwxr-xr-x | wx+/file_drop.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wx+/file_drop.h b/wx+/file_drop.h index 35b7ca9e..526ee64d 100755 --- a/wx+/file_drop.h +++ b/wx+/file_drop.h @@ -39,7 +39,7 @@ extern const wxEventType EVENT_DROP_FILE; class FileDropEvent : public wxCommandEvent { public: - FileDropEvent(const std::vector<Zstring>& droppedPaths) : wxCommandEvent(EVENT_DROP_FILE), droppedPaths_(droppedPaths) {} + FileDropEvent(const std::vector<Zstring>& droppedPaths) : wxCommandEvent(EVENT_DROP_FILE), droppedPaths_(droppedPaths) { StopPropagation(); } const std::vector<Zstring>& getPaths() const { return droppedPaths_; } |