diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-11-27 20:14:53 +0100 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-11-27 20:14:53 +0100 |
commit | 0425fd280e7eee7a4c9bcf18f79910f181322c42 (patch) | |
tree | ec8e044711866266d38fc8c78f6e7ece8cf447d4 /lib/events/accountdataevents.h | |
parent | 0a46049ef26270933ecf6fea7395b03e6aee783e (diff) | |
download | libquotient-0425fd280e7eee7a4c9bcf18f79910f181322c42.tar.gz libquotient-0425fd280e7eee7a4c9bcf18f79910f181322c42.zip |
Event::content() -> contentPart()
There's a clash between Event::content() (a template function) and
RoomMessageEvent::content() (plain member). Out of these two, the name
more fits to the RME's member function - strictly speaking,
Event::content() retrieves a part of content, and so is renamed.
In addition, contentPart() defaults to QJsonValue now, which is pretty
intuitive (the function returns values from a JSON object) and allows
to implement more elaborate logic such as
if (const auto v = contentPart<>("key"_ls); v.isObject()) {
// foo
} else if (v.isString()) {
// bar
} else {
// boo
}
Diffstat (limited to 'lib/events/accountdataevents.h')
-rw-r--r-- | lib/events/accountdataevents.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/events/accountdataevents.h b/lib/events/accountdataevents.h index 8cea0ec8..7715d3b8 100644 --- a/lib/events/accountdataevents.h +++ b/lib/events/accountdataevents.h @@ -63,7 +63,7 @@ using TagsMap = QHash<QString, TagRecord>; {} \ auto _ContentKey() const \ { \ - return content<content_type>(#_ContentKey##_ls); \ + return contentPart<content_type>(#_ContentKey##_ls); \ } \ }; \ REGISTER_EVENT_TYPE(_Name) \ |