From 487f6627541e49810f6fb48947a7226717fe17a8 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 2 Aug 2012 05:38:39 +0000 Subject: [PATCH] Add ctors for wxFileSystemWatcherEvent git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72271 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/fswatcher.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/interface/wx/fswatcher.h b/interface/wx/fswatcher.h index e720f02..584121b 100644 --- a/interface/wx/fswatcher.h +++ b/interface/wx/fswatcher.h @@ -143,6 +143,13 @@ public: class wxFileSystemWatcherEvent : public wxEvent { public: + wxFileSystemWatcherEvent(int changeType, int watchid = wxID_ANY); + wxFileSystemWatcherEvent(int changeType, const wxString& errorMsg, + int watchid = wxID_ANY); + wxFileSystemWatcherEvent(int changeType, + const wxFileName& path, const wxFileName& newPath, + int watchid = wxID_ANY); + /** Returns the path at which the event occurred. */ @@ -182,6 +189,7 @@ public: wxString ToString() const; }; +wxEventType wxEVT_FSWATCHER; /** These are the possible types of file system change events. -- 2.7.4