X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..3f7564f229450a9c036141878ee75cc09078a945:/utils/helpview/src/helpview.h?ds=sidebyside diff --git a/utils/helpview/src/helpview.h b/utils/helpview/src/helpview.h index 2dbf1cdadb..7b30b795f5 100644 --- a/utils/helpview/src/helpview.h +++ b/utils/helpview/src/helpview.h @@ -36,7 +36,7 @@ public: #ifdef __WXMAC__ /// Respond to Apple Event for opening a document - virtual void MacOpenFile(const wxString& filename); + virtual void MacOpenFiles(const wxArrayString& fileNames); #endif /// Prompt the user for a book to open @@ -65,12 +65,11 @@ class hvConnection : public wxConnection { public: hvConnection(); - ~hvConnection(); + virtual ~hvConnection(); - bool OnExecute(const wxString& topic, wxChar*data, int size, wxIPCFormat format); - wxChar *OnRequest(const wxString& topic, const wxString& item, int *size, wxIPCFormat format); - bool OnPoke(const wxString& topic, const wxString& item, wxChar *data, int size, wxIPCFormat format); - bool OnStartAdvise(const wxString& topic, const wxString& item); + bool OnExec(const wxString& topic, const wxString& data); + bool OnPoke(const wxString& topic, const wxString& item, + const void *data, size_t size, wxIPCFormat format); private: };