diff options
Diffstat (limited to 'plugin/src/Caelestia/Models/filesystemmodel.cpp')
| -rw-r--r-- | plugin/src/Caelestia/Models/filesystemmodel.cpp | 4 |
1 files changed, 2 insertions, 2 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 |