[keel,studio,turbine] Finish removing implicit String(const char*) calls

This commit is contained in:
2023-12-01 22:44:24 -06:00
parent 1a1c8ae6cc
commit 9904399724
7 changed files with 10 additions and 10 deletions

View File

@@ -52,7 +52,7 @@ ox::BasicString<255> ProjectTreeModel::fullPath() const noexcept {
if (m_parent) {
return m_parent->fullPath() + "/" + ox::StringView(m_name);
}
return "";
return {};
}
}

View File

@@ -34,11 +34,11 @@ class ItemMakerT: public ItemMaker {
const ox::ClawFormat fmt;
public:
constexpr explicit ItemMakerT(
ox::String pDisplayName,
ox::String pParentDir,
ox::CRStringView fileExt,
ox::StringView pDisplayName,
ox::StringView pParentDir,
ox::StringView fileExt,
ox::ClawFormat pFmt = ox::ClawFormat::Metal) noexcept:
ItemMaker(std::move(pDisplayName), std::move(pParentDir), fileExt),
ItemMaker(ox::String(pDisplayName), ox::String(pParentDir), fileExt),
fmt(pFmt) {
}
constexpr ItemMakerT(