diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-01-21 02:04:10 +0100 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-01-21 02:04:34 +0100 |
commit | fdff209744ac4c422f63fe2549aa0132df7e6292 (patch) | |
tree | 55ebfcd92da71aa7809f311cc1d2550ff9e51db0 /quotest | |
parent | 142fc5a21f541e2a7592119df075a543527195b9 (diff) | |
download | libquotient-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.cpp | 2 |
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) |