refactor(new_editor): close docking loop and app internals

This commit is contained in:
2026-04-15 23:13:09 +08:00
parent cd8ce5947c
commit 52af8e3a6f
15 changed files with 411 additions and 317 deletions

View File

@@ -1,6 +1,6 @@
#include "ProjectBrowserModelInternal.h"
#include "Support/StringEncoding.h"
#include "Internal/StringEncoding.h"
#include <algorithm>
#include <cctype>
@@ -20,7 +20,7 @@ std::string ToLowerCopy(std::string value) {
}
std::string PathToUtf8String(const std::filesystem::path& path) {
return Support::WideToUtf8(path.native());
return App::Internal::WideToUtf8(path.native());
}
std::string NormalizePathSeparators(std::string value) {