diff options
| author | in1tiate <32779090+in1tiate@users.noreply.github.com> | 2025-01-11 01:54:56 -0600 |
|---|---|---|
| committer | in1tiate <32779090+in1tiate@users.noreply.github.com> | 2025-01-11 01:54:56 -0600 |
| commit | ca660cc439bdde765cdf2cfcdaacbaf41d86f719 (patch) | |
| tree | c5553fea227a0b2f2ca7d29d44950c8f783ee289 /src/aoapplication.h | |
| parent | 4dae73c848bba1e44abf5a37d41034ded25cf28a (diff) | |
make range-for const
Diffstat (limited to 'src/aoapplication.h')
| -rw-r--r-- | src/aoapplication.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/aoapplication.h b/src/aoapplication.h index 6022ca1d..1386ff10 100644 --- a/src/aoapplication.h +++ b/src/aoapplication.h @@ -43,7 +43,7 @@ public: inline VPath operator+(const VPath &str) const { return VPath(this->toQString() + str.toQString()); } }; -inline size_t qHash(const VPath &key, uint seed = qGlobalQHashSeed()) +inline size_t qHash(const VPath &key, uint seed = QHashSeed::globalSeed()) { return qHash(key.toQString(), seed); } |
