diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-07-21 20:06:29 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-07-21 20:09:01 +0900 |
commit | d3f1f39dafc87ce5b4654ac2a9b21df53dad1a4b (patch) | |
tree | 3f66a5700db17013771d83a1bcab6a7be2e24cf9 /lib/csapi/admin.h | |
parent | b71baf486dc276ad616e3c7b46f44b4cafb62f40 (diff) | |
download | libquotient-d3f1f39dafc87ce5b4654ac2a9b21df53dad1a4b.tar.gz libquotient-d3f1f39dafc87ce5b4654ac2a9b21df53dad1a4b.zip |
csapi: Fix indentaton of data structures inside job classes
Diffstat (limited to 'lib/csapi/admin.h')
-rw-r--r-- | lib/csapi/admin.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/csapi/admin.h b/lib/csapi/admin.h index b1b23ded..a0c43fb9 100644 --- a/lib/csapi/admin.h +++ b/lib/csapi/admin.h @@ -33,11 +33,11 @@ namespace QMatrixClient /// specified in this document. struct ConnectionInfo { - /// Most recently seen IP address of the session. + /// Most recently seen IP address of the session. QString ip; - /// Unix timestamp that the session was last active. + /// Unix timestamp that the session was last active. Omittable<qint64> lastSeen; - /// User agent string last seen in the session. + /// User agent string last seen in the session. QString userAgent; }; @@ -48,7 +48,7 @@ namespace QMatrixClient /// specified in this document. struct SessionInfo { - /// Information particular connections in the session. + /// Information particular connections in the session. QVector<ConnectionInfo> connections; }; @@ -59,7 +59,7 @@ namespace QMatrixClient /// specified in this document. struct DeviceInfo { - /// A user's sessions (i.e. what they did with an access token from one login). + /// A user's sessions (i.e. what they did with an access token from one login). QVector<SessionInfo> sessions; }; |