diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-02-27 16:40:03 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-02-28 12:31:38 +0900 |
commit | 6c6b5b1bc18e16d0b40b674c8a48e0104ec73729 (patch) | |
tree | 53587f877fba6d3f08e3105a9a6981fe92d34205 /events/unknownevent.cpp | |
parent | 2a5301b5a50c49b480b2c3968b4bca2610a8d6f0 (diff) | |
download | libquotient-6c6b5b1bc18e16d0b40b674c8a48e0104ec73729.tar.gz libquotient-6c6b5b1bc18e16d0b40b674c8a48e0104ec73729.zip |
Renamed logging_util.h to util.h and moved (improved) Owning<> and lookup() there
Because these fall outside of SyncJob and Event context, respectively. In addition, Owning<> has gained a move assignment operator (because we have a move constructor) and assign() convenience method to take ownership over an existing container; also, Owning<>::release() is done the right way now (the previous version was copying the return value to a new container instead of releasing the old container).
Diffstat (limited to 'events/unknownevent.cpp')
-rw-r--r-- | events/unknownevent.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/events/unknownevent.cpp b/events/unknownevent.cpp index 90551409..70dcfcbb 100644 --- a/events/unknownevent.cpp +++ b/events/unknownevent.cpp @@ -21,7 +21,7 @@ #include <QtCore/QJsonDocument> #include <QtCore/QDebug> -#include "../logging_util.h" +#include "util.h" using namespace QMatrixClient; |