summary refs log tree commit diff
path: root/src/timeline2/TimelineViewManager.cpp
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2019-09-11 00:59:04 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2019-11-23 20:06:14 +0100
commit691c8542019284044e50ef14e166930993953be8 (patch)
tree4c05512debd57ec4008032f60fc9f74e3c909411 /src/timeline2/TimelineViewManager.cpp
parentImplement replies in qml timeline (diff)
downloadnheko-691c8542019284044e50ef14e166930993953be8.tar.xz
Try to fix CI, no match for QString::arg(QStringRef)
Diffstat (limited to 'src/timeline2/TimelineViewManager.cpp')
-rw-r--r--src/timeline2/TimelineViewManager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timeline2/TimelineViewManager.cpp b/src/timeline2/TimelineViewManager.cpp

index b0ed4eab..93a42543 100644 --- a/src/timeline2/TimelineViewManager.cpp +++ b/src/timeline2/TimelineViewManager.cpp
@@ -82,7 +82,7 @@ TimelineViewManager::queueReplyMessage(const QString &reply, const RelatedInfo & QString body; bool firstLine = true; - for (const auto &line : related.quoted_body.splitRef("\n")) { + for (const auto &line : related.quoted_body.split("\n")) { if (firstLine) { firstLine = false; body = QString("> <%1> %2\n").arg(related.quoted_user).arg(line);