[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

@@ -14,7 +14,7 @@ namespace turbine {
ox::String getClipboardText(Context &ctx) noexcept {
auto &gctx = static_cast<GlfwContext&>(ctx);
return glfwGetClipboardString(gctx.window);
return ox::String(glfwGetClipboardString(gctx.window));
}
void setClipboardText(Context &ctx, ox::CRStringView text) noexcept {