Use wxASCII_STR() on string literals
Fix the build with wxNO_IMPLICIT_WXSTRING_ENCODING.
This commit is contained in:
committed by
Vadim Zeitlin
parent
65cbf40b7e
commit
c86bcf962d
@@ -32,12 +32,12 @@ public:
|
||||
// Called by wxProtocol-derived classes to actually log something
|
||||
virtual void LogRequest(const wxString& str)
|
||||
{
|
||||
DoLogString("==> " + str);
|
||||
DoLogString(wxASCII_STR("==> ") + str);
|
||||
}
|
||||
|
||||
virtual void LogResponse(const wxString& str)
|
||||
{
|
||||
DoLogString("<== " + str);
|
||||
DoLogString(wxASCII_STR("<== ") + str);
|
||||
}
|
||||
|
||||
protected:
|
||||
|
Reference in New Issue
Block a user