]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/protocol.cpp
Fix harmless unused parameter warnings in wxX11 wxCursor.
[wxWidgets.git] / src / common / protocol.cpp
index 1f508709eb7526c3e676c166aee362c5e8da152e..110afc760ca4455691e58adaa645037aa6ad4039 100644 (file)
@@ -137,7 +137,7 @@ wxProtocolError wxProtocol::ReadLine(wxSocketBase *sock, wxString& result)
             if ( eol == pBuf )
             {
                 // check for case of "\r\n" being split
-                if ( result.empty() || result.Last() != _T('\r') )
+                if ( result.empty() || result.Last() != wxT('\r') )
                 {
                     // ignore the stray '\n'
                     eol = NULL;