diff options
author | Ritt Konstantin <ritt.ks@gmail.com> | 2011-06-06 11:52:08 (GMT) |
---|---|---|
committer | Harald Fernengel <harald.fernengel@nokia.com> | 2011-06-06 11:52:08 (GMT) |
commit | f9053a429993a5081d7a3e67934f58345ee3e25b (patch) | |
tree | f33f4de016cd8b24c4b20b2a98b690ceb5b7c073 /src/gui | |
parent | 38c3c3d155daee30185d8d7af863827810e8ed90 (diff) | |
download | Qt-f9053a429993a5081d7a3e67934f58345ee3e25b.zip Qt-f9053a429993a5081d7a3e67934f58345ee3e25b.tar.gz Qt-f9053a429993a5081d7a3e67934f58345ee3e25b.tar.bz2 |
avoid the QT_NO_ASCII warning
Merge-request: 2627
Reviewed-by: Harald Fernengel <harald.fernengel@nokia.com>
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/kernel/qapplication_qws.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/kernel/qapplication_qws.cpp b/src/gui/kernel/qapplication_qws.cpp index 0bd4ac3..e11571c 100644 --- a/src/gui/kernel/qapplication_qws.cpp +++ b/src/gui/kernel/qapplication_qws.cpp @@ -217,7 +217,7 @@ QString qws_dataDir() qFatal("Qt for Embedded Linux data directory has incorrect permissions: %s", dataDir.constData()); #endif - result.append("/"); + result.append(QLatin1Char('/')); return result; } |