Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@woboq.com>2017-12-08 13:13:44 +0300
committerOlivier Goffart <ogoffart@woboq.com>2017-12-08 18:15:48 +0300
commit8c652e061d3617e59bc4585b81028aa14cfc47e6 (patch)
tree64b09377d5ed97f1d5a2c1dbfd15b80e0080a9f8 /src/gui/syncrunfilelog.cpp
parenta4816d6a8cd3577ffbe42abaf01f83633d41be19 (diff)
Remove uses of deprecated QString::fromAscii
Diffstat (limited to 'src/gui/syncrunfilelog.cpp')
-rw-r--r--src/gui/syncrunfilelog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/syncrunfilelog.cpp b/src/gui/syncrunfilelog.cpp
index 9d4a06d7f..73f801b5d 100644
--- a/src/gui/syncrunfilelog.cpp
+++ b/src/gui/syncrunfilelog.cpp
@@ -136,7 +136,7 @@ void SyncRunFileLog::logItem(const SyncFileItem &item)
if (item._direction == SyncFileItem::None) {
return;
}
- QString ts = QString::fromAscii(item._responseTimeStamp);
+ QString ts = QString::fromLatin1(item._responseTimeStamp);
if (ts.length() > 6) {
QRegExp rx("(\\d\\d:\\d\\d:\\d\\d)");
if (ts.contains(rx)) {