diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-11 22:08:25 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-11 22:08:25 +1000 |
| commit | b87d5bf20eeea7f6a865066f9a39f7fd084df8ee (patch) | |
| tree | d3e491231cefd793ccd9f44304e7395ea013d3ad /plugin/src/Caelestia/service.cpp | |
| parent | plugin/appdb: fix persistence (diff) | |
| download | caelestia-shell-b87d5bf20eeea7f6a865066f9a39f7fd084df8ee.tar.gz caelestia-shell-b87d5bf20eeea7f6a865066f9a39f7fd084df8ee.tar.bz2 caelestia-shell-b87d5bf20eeea7f6a865066f9a39f7fd084df8ee.zip | |
plugin: format + refactor
Diffstat (limited to '')
| -rw-r--r-- | plugin/src/Caelestia/service.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/src/Caelestia/service.cpp b/plugin/src/Caelestia/service.cpp index a265b22..941138f 100644 --- a/plugin/src/Caelestia/service.cpp +++ b/plugin/src/Caelestia/service.cpp @@ -8,7 +8,7 @@ Service::Service(QObject* parent) : QObject(parent) , m_refCount(0) {} -int Service::refCount() { +int Service::refCount() const { QMutexLocker locker(&m_mutex); return m_refCount; } |