wxGetApp().GetConnections().DeleteObject(this);
}
-bool hvConnection::OnExecute(const wxString& WXUNUSED(topic),
- wxChar *data,
- int WXUNUSED(size),
- wxIPCFormat WXUNUSED(format))
+bool hvConnection::OnExec(const wxString& WXUNUSED(topic),
+ const wxString& data)
{
// wxLogStatus("Execute command: %s", data);
- if ( !wxStrncmp( data, wxT("--intstring"), 11 ) )
+ if ( data == "--intstring" )
{
long i;
wxString argStr = data;
hvConnection();
virtual ~hvConnection();
- bool OnExecute(const wxString& topic, wxChar*data, int size, wxIPCFormat format);
+ bool OnExec(const wxString& topic, const wxString& data);
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);