summaryrefslogtreecommitdiff
path: root/wx+/file_drop.h
diff options
context:
space:
mode:
Diffstat (limited to 'wx+/file_drop.h')
-rw-r--r--wx+/file_drop.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/wx+/file_drop.h b/wx+/file_drop.h
index 2feef6e2..c9f2469c 100644
--- a/wx+/file_drop.h
+++ b/wx+/file_drop.h
@@ -28,7 +28,7 @@ namespace zen
/*
1. setup a window to emit EVENT_DROP_FILE:
- - simple file system paths: setupFileDrop
+ - simple file system paths: setupFileDrop
- any shell paths with validation: setupShellItemDrop
2. register events:
@@ -64,14 +64,14 @@ const wxEventType EVENT_DROP_FILE = impl::createNewEventType();
class FileDropEvent : public wxCommandEvent
{
public:
- FileDropEvent(const std::vector<Zstring>& filesDropped) : wxCommandEvent(EVENT_DROP_FILE), filesDropped_(filesDropped) {}
+ FileDropEvent(const std::vector<Zstring>& droppedPaths) : wxCommandEvent(EVENT_DROP_FILE), droppedPaths_(droppedPaths) {}
- const std::vector<Zstring>& getFiles() const { return filesDropped_; }
+ const std::vector<Zstring>& getPaths() const { return droppedPaths_; }
private:
wxEvent* Clone() const override { return new FileDropEvent(*this); }
- const std::vector<Zstring> filesDropped_;
+ const std::vector<Zstring> droppedPaths_;
};
typedef void (wxEvtHandler::*FileDropEventFunction)(FileDropEvent&);
bgstack15