diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2021-01-06 21:52:53 +0100 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2021-01-06 21:52:53 +0100 |
commit | 381b6505b5afaacc9194168697f6bc93c43d2775 (patch) | |
tree | 1190917b6ee40d6f4a74bf724466b3062ab86f4f /src/message.h | |
parent | 96eb8471d11667a56466a6f701d1d23fa64c2225 (diff) |
Access services via Server object
Diffstat (limited to 'src/message.h')
-rw-r--r-- | src/message.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/message.h b/src/message.h index c4a3549..efdec8f 100644 --- a/src/message.h +++ b/src/message.h @@ -51,8 +51,8 @@ struct DirectMessageThread::Iterator::Priv struct DirectMessageService::Priv { - static vector<ThreadWatcher> watchers; - static mutex watcherLock; + vector<ThreadWatcher> watchers; + mutex watcherLock; }; } |