aboutsummaryrefslogtreecommitdiff
path: root/lib/events/redactionevent.h
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2018-05-04 12:13:43 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2018-05-04 13:11:56 +0900
commit28a0d70164e2596d306521cd18d25c0e8c0b5336 (patch)
tree96d5f6c936e2906800388b7b45ec3d57ffad04a4 /lib/events/redactionevent.h
parent844eddfffb8e1ee5d213371299dee0d15614bef8 (diff)
downloadlibquotient-28a0d70164e2596d306521cd18d25c0e8c0b5336.tar.gz
libquotient-28a0d70164e2596d306521cd18d25c0e8c0b5336.zip
EvT::TypeId: Use a member function instead of a variable
The latter one causes linkage errors when used from a template method (but not from a template class, puzzlingly).
Diffstat (limited to 'lib/events/redactionevent.h')
-rw-r--r--lib/events/redactionevent.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/events/redactionevent.h b/lib/events/redactionevent.h
index 829b9085..dad54788 100644
--- a/lib/events/redactionevent.h
+++ b/lib/events/redactionevent.h
@@ -25,7 +25,7 @@ namespace QMatrixClient
class RedactionEvent : public RoomEvent
{
public:
- static constexpr const char* const TypeId = "m.room.redaction";
+ static constexpr const char* typeId() { return "m.room.redaction"; }
explicit RedactionEvent(const QJsonObject& obj)
: RoomEvent(Type::Redaction, obj)