summaryrefslogtreecommitdiff
path: root/wx+/file_drop.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2015-10-02 14:53:20 +0200
committerDaniel Wilhelm <daniel@wili.li>2015-10-02 14:53:20 +0200
commit94db751716dd2851f99b5c4c2981da1d1f4780f8 (patch)
treee4ffc9f5ae2b2873f267a6e5d3d2092c8aad49a7 /wx+/file_drop.h
parent6.10 (diff)
downloadFreeFileSync-94db751716dd2851f99b5c4c2981da1d1f4780f8.tar.gz
FreeFileSync-94db751716dd2851f99b5c4c2981da1d1f4780f8.tar.bz2
FreeFileSync-94db751716dd2851f99b5c4c2981da1d1f4780f8.zip
6.11
Diffstat (limited to 'wx+/file_drop.h')
-rw-r--r--wx+/file_drop.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/wx+/file_drop.h b/wx+/file_drop.h
index 47019a04..55772a03 100644
--- a/wx+/file_drop.h
+++ b/wx+/file_drop.h
@@ -59,7 +59,7 @@ public:
dropWindow_(dropWindow),
dropPos_(dropPos) {}
- virtual wxEvent* Clone() const { return new FileDropEvent(*this); }
+ wxEvent* Clone() const override { return new FileDropEvent(*this); }
const std::vector<wxString>& getFiles() const { return filesDropped_; }
const wxWindow& getDropWindow() const { return dropWindow_; }
@@ -85,7 +85,7 @@ public:
WindowDropTarget(wxWindow& dropWindow) : dropWindow_(dropWindow) {}
private:
- virtual bool OnDropFiles(wxCoord x, wxCoord y, const wxArrayString& fileArray)
+ bool OnDropFiles(wxCoord x, wxCoord y, const wxArrayString& fileArray) override
{
std::vector<wxString> filepaths(fileArray.begin(), fileArray.end());
if (!filepaths.empty())
bgstack15