Remove misleading warning from the ipc sample
DDE code translates wxIPC_PRIVATE to wxIPC_TEXT internally since a
change done in 9d86099269
, but same commit
also added a warning to the ipc sample stating that wxIPC_PRIVATE
doesn't work, which isn't really the case.
Remove the warning to avoid the confusion.
See #7470.
This commit is contained in:
@@ -273,12 +273,6 @@ void MyServer::Advise()
|
|||||||
const wxString s = now.FormatTime() + " " + now.FormatDate();
|
const wxString s = now.FormatTime() + " " + now.FormatDate();
|
||||||
m_connection->Advise(m_connection->m_advise, s.mb_str(), wxNO_LEN);
|
m_connection->Advise(m_connection->m_advise, s.mb_str(), wxNO_LEN);
|
||||||
|
|
||||||
#if wxUSE_DDE_FOR_IPC
|
|
||||||
wxLogMessage("DDE Advise type argument cannot be wxIPC_PRIVATE. "
|
|
||||||
"The client will receive it as wxIPC_TEXT, "
|
|
||||||
" and receive the correct no of bytes, "
|
|
||||||
"but not print a correct log entry.");
|
|
||||||
#endif
|
|
||||||
char bytes[3] = { '1', '2', '3' };
|
char bytes[3] = { '1', '2', '3' };
|
||||||
m_connection->Advise(m_connection->m_advise, bytes, 3, wxIPC_PRIVATE);
|
m_connection->Advise(m_connection->m_advise, bytes, 3, wxIPC_PRIVATE);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user