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

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Goetz <markus@woboq.com>2015-03-09 17:52:52 +0300
committerMarkus Goetz <markus@woboq.com>2015-03-09 17:52:52 +0300
commit31e400973705e6713e15325c6cdafcc4faead034 (patch)
tree7e3fcccc03e677119ecbf1463f2d337aed7b62db /src/gui/syncrunfilelog.cpp
parent8746914f3b5ca659b2726c609703597a81810af4 (diff)
Propagator: Use QBA for responseTimestamp instead of QString
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 4d6578744..607ca5662 100644
--- a/src/gui/syncrunfilelog.cpp
+++ b/src/gui/syncrunfilelog.cpp
@@ -129,7 +129,7 @@ void SyncRunFileLog::logItem( const SyncFileItem& item )
if( item._direction == SyncFileItem::None ) {
return;
}
- QString ts = item._responseTimeStamp;
+ QString ts = QString::fromAscii(item._responseTimeStamp);
if( ts.length() > 6 ) {
QRegExp rx("(\\d\\d:\\d\\d:\\d\\d)");
if( ts.contains(rx) ) {