aboutsummaryrefslogtreecommitdiff
path: root/quotest
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-01-21 02:04:10 +0100
committerAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-01-21 02:04:34 +0100
commitfdff209744ac4c422f63fe2549aa0132df7e6292 (patch)
tree55ebfcd92da71aa7809f311cc1d2550ff9e51db0 /quotest
parent142fc5a21f541e2a7592119df075a543527195b9 (diff)
downloadlibquotient-fdff209744ac4c422f63fe2549aa0132df7e6292.tar.gz
libquotient-fdff209744ac4c422f63fe2549aa0132df7e6292.zip
Redo EventRelation; deprecate RelatesTo
RelatesTo and EventRelation have been two means to the same end in two different contexts. (Modernised) EventRelation is the one used now both for ReactionEvent and EventContent::TextContent. The modernisation mostly boils down to using inline variables instead of functions to return relation types and switching to QLatin1String from const char* (because we know exactly that those constants are Latin-1 and QLatin1String is more efficient than const char* to compare/convert to QString).
Diffstat (limited to 'quotest')
-rw-r--r--quotest/quotest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/quotest/quotest.cpp b/quotest/quotest.cpp
index 5a5642fe..40bc456b 100644
--- a/quotest/quotest.cpp
+++ b/quotest/quotest.cpp
@@ -381,7 +381,7 @@ TEST_IMPL(sendReaction)
if (actualTargetEvtId != targetEvtId)
return false;
const auto reactions = targetRoom->relatedEvents(
- targetEvtId, EventRelation::Annotation());
+ targetEvtId, EventRelation::AnnotationType);
// It's a test room, assuming no interference there should
// be exactly one reaction
if (reactions.size() != 1)