[studio/applib] Cleanup
All checks were successful
Build / build (push) Successful in 1m19s

This commit is contained in:
Gary Talent 2025-05-14 22:11:43 -05:00
parent 8a52df4f76
commit 0de428a2e5
2 changed files with 4 additions and 3 deletions

View File

@ -13,8 +13,9 @@ extern ox::String appVersion;
namespace studio { namespace studio {
AboutPopup::AboutPopup(turbine::Context &ctx) noexcept: Popup("About") { AboutPopup::AboutPopup(turbine::Context &ctx) noexcept:
m_text = ox::sfmt("{} - {}", keelCtx(ctx).appName, olympic::appVersion); Popup("About"),
m_text{sfmt("{} - {}", keelCtx(ctx).appName, olympic::appVersion)} {
} }
void AboutPopup::draw(Context &sctx) noexcept { void AboutPopup::draw(Context &sctx) noexcept {

View File

@ -15,7 +15,7 @@ namespace studio {
class AboutPopup final: public ig::Popup { class AboutPopup final: public ig::Popup {
private: private:
ox::String m_text; ox::String const m_text;
public: public:
explicit AboutPopup(turbine::Context &ctx) noexcept; explicit AboutPopup(turbine::Context &ctx) noexcept;