diff options
author | Daniel Wilhelm <shieldwed@outlook.com> | 2017-04-20 17:05:29 -0600 |
---|---|---|
committer | Daniel Wilhelm <shieldwed@outlook.com> | 2017-04-20 17:05:29 -0600 |
commit | 94eeff901cb5f3d435840a662b4438c631127183 (patch) | |
tree | 7a4e7ed4627fb2ddfa3ef5176b7b35981b52c51f /wx+/file_drop.h | |
parent | normalize most lineendings (diff) | |
download | FreeFileSync-94eeff901cb5f3d435840a662b4438c631127183.tar.gz FreeFileSync-94eeff901cb5f3d435840a662b4438c631127183.tar.bz2 FreeFileSync-94eeff901cb5f3d435840a662b4438c631127183.zip |
9.0
Diffstat (limited to 'wx+/file_drop.h')
-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_; } |