diff options
| author | Soramane <61896496+soramanew@users.noreply.github.com> | 2025-09-24 14:19:04 +1000 |
|---|---|---|
| committer | Soramane <61896496+soramanew@users.noreply.github.com> | 2025-09-24 14:19:04 +1000 |
| commit | 17509aa2d9573cc2283ea35148a8078d904454f3 (patch) | |
| tree | 8579ec152a272ce2b227a996681d6d8017c356e1 /plugin/src/Caelestia/Models | |
| parent | internal: add option for splitbutton menu pos (diff) | |
| download | caelestia-shell-17509aa2d9573cc2283ea35148a8078d904454f3.tar.gz caelestia-shell-17509aa2d9573cc2283ea35148a8078d904454f3.tar.bz2 caelestia-shell-17509aa2d9573cc2283ea35148a8078d904454f3.zip | |
plugin: sub namespace modules
Diffstat (limited to 'plugin/src/Caelestia/Models')
| -rw-r--r-- | plugin/src/Caelestia/Models/filesystemmodel.cpp | 4 | ||||
| -rw-r--r-- | plugin/src/Caelestia/Models/filesystemmodel.hpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/plugin/src/Caelestia/Models/filesystemmodel.cpp b/plugin/src/Caelestia/Models/filesystemmodel.cpp index 81c07d9..3ceb1dd 100644 --- a/plugin/src/Caelestia/Models/filesystemmodel.cpp +++ b/plugin/src/Caelestia/Models/filesystemmodel.cpp @@ -4,7 +4,7 @@ #include <qfuturewatcher.h> #include <qtconcurrentrun.h> -namespace caelestia { +namespace caelestia::models { FileSystemEntry::FileSystemEntry(const QString& path, const QString& relativePath, QObject* parent) : QObject(parent) @@ -476,4 +476,4 @@ bool FileSystemModel::compareEntries(const FileSystemEntry* a, const FileSystemE return m_sortReverse ? cmp > 0 : cmp < 0; } -} // namespace caelestia +} // namespace caelestia::models diff --git a/plugin/src/Caelestia/Models/filesystemmodel.hpp b/plugin/src/Caelestia/Models/filesystemmodel.hpp index 9178e0c..cead43f 100644 --- a/plugin/src/Caelestia/Models/filesystemmodel.hpp +++ b/plugin/src/Caelestia/Models/filesystemmodel.hpp @@ -9,7 +9,7 @@ #include <qobject.h> #include <qqmlintegration.h> -namespace caelestia { +namespace caelestia::models { class FileSystemEntry : public QObject { Q_OBJECT @@ -144,4 +144,4 @@ private: [[nodiscard]] bool compareEntries(const FileSystemEntry* a, const FileSystemEntry* b) const; }; -} // namespace caelestia +} // namespace caelestia::models |