X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c6eea7ff8b8aaf0da210b17b535de1137547e91e..5cbda74b6606482f5286a5599fc60f3f91995a52:/interface/wx/fswatcher.h?ds=sidebyside diff --git a/interface/wx/fswatcher.h b/interface/wx/fswatcher.h index 87c7a07c61..37167c7d75 100644 --- a/interface/wx/fswatcher.h +++ b/interface/wx/fswatcher.h @@ -152,34 +152,6 @@ public: OnChange(), OnWarning() or OnError(). */ void SetOwner(wxEvtHandler* handler); - -protected: - /** - You may either connect your event handler to intercept file system - watcher events or override this member and handle them here. - - Perform whatever action which is to be taken on file system change. - */ - virtual void OnChange(int changeType, const wxFileName& path, - const wxFileName& newPath); - - /** - You may either connect your event handler to intercept file system - watcher events or override this member and handle them here. - - Perform whatever action which is to be taken when a warning condition - arises. - */ - virtual void OnWarning(const wxString& errorMessage); - - /** - You may either connect your event handler to intercept file system - watcher events or override this member and handle them here. - - Perform whatever action which is to be taken when an error condition - arises. - */ - virtual void OnError(const wxString& errorMessage); }; @@ -188,7 +160,7 @@ protected: @class wxFileSystemWatcherEvent A class of events sent when a file system event occurs. Types of events - reported may vary depending on a platfrom, however all platforms report + reported may vary depending on a platform, however all platforms report at least creation of new file/directory and access, modification, move (rename) or deletion of an existing one.