summaryrefslogtreecommitdiff
path: root/wx+/file_drop.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2015-10-02 14:56:27 +0200
committerDaniel Wilhelm <daniel@wili.li>2015-10-02 14:56:27 +0200
commit19eb73ff543c81c6886725a20dea0060cb0c0c26 (patch)
tree91442c0fdb9cac90c75dfb6bb84def9df297cd77 /wx+/file_drop.h
parent7.2 (diff)
downloadFreeFileSync-19eb73ff543c81c6886725a20dea0060cb0c0c26.tar.gz
FreeFileSync-19eb73ff543c81c6886725a20dea0060cb0c0c26.tar.bz2
FreeFileSync-19eb73ff543c81c6886725a20dea0060cb0c0c26.zip
7.3
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