The message arises because the constant is an int, not a char.
Qt Code:
if (receivedMessage[0] == '\x0a') if (receivedMessage[0] == char(0x0a))To copy to clipboard, switch view to plain text mode
The message arises because the constant is an int, not a char.
Qt Code:
if (receivedMessage[0] == '\x0a') if (receivedMessage[0] == char(0x0a))To copy to clipboard, switch view to plain text mode
Ferric (16th November 2011)
Bookmarks