Remove unnecessary c_str() from wx var arg functions arguments
Using c_str() for arguments to wxString::Printf(), Format() and wxLogXXX() is useless since wx 2.9 days, so simply remove them. No real changes, this is just a (long due) cleanup.
This commit is contained in:
@@ -524,7 +524,7 @@ wxTCPServer::~wxTCPServer()
|
||||
{
|
||||
if ( remove(m_filename.fn_str()) != 0 )
|
||||
{
|
||||
wxLogDebug(wxT("Stale AF_UNIX file '%s' left."), m_filename.c_str());
|
||||
wxLogDebug(wxT("Stale AF_UNIX file '%s' left."), m_filename);
|
||||
}
|
||||
}
|
||||
#endif // __UNIX_LIKE__
|
||||
|
||||
Reference in New Issue
Block a user