summaryrefslogtreecommitdiffstats
path: root/examples/network/securesocketclient
diff options
context:
space:
mode:
authorMarkus Goetz <Markus.Goetz@nokia.com>2010-01-28 15:46:51 (GMT)
committerMarkus Goetz <Markus.Goetz@nokia.com>2010-01-28 15:49:55 (GMT)
commit1a6e9a69235458e55b2e726e51d2797434780384 (patch)
tree1806db1ce99a8d62486541aa7b1a2b2819e07da8 /examples/network/securesocketclient
parentb4d60000981e298b7e40605a284f2b8b9b18fff5 (diff)
downloadQt-1a6e9a69235458e55b2e726e51d2797434780384.zip
Qt-1a6e9a69235458e55b2e726e51d2797434780384.tar.gz
Qt-1a6e9a69235458e55b2e726e51d2797434780384.tar.bz2
Core classes, examples, demos: Some changes from string to char
Reviewed-by: Peter Hartmann
Diffstat (limited to 'examples/network/securesocketclient')
-rw-r--r--examples/network/securesocketclient/sslclient.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/network/securesocketclient/sslclient.cpp b/examples/network/securesocketclient/sslclient.cpp
index 1422f1c..0d6a581 100644
--- a/examples/network/securesocketclient/sslclient.cpp
+++ b/examples/network/securesocketclient/sslclient.cpp
@@ -177,7 +177,7 @@ void SslClient::socketReadyRead()
void SslClient::sendData()
{
QString input = form->sessionInput->text();
- appendString(input + "\n");
+ appendString(input + '\n');
socket->write(input.toUtf8() + "\r\n");
form->sessionInput->clear();
}