[olympic] Change olympic::s_version to olympic::appVersion
All checks were successful
Build / build (push) Successful in 2m17s

This commit is contained in:
Gary Talent 2024-01-01 14:14:16 -06:00
parent dd9c1100c3
commit 5418c06296
2 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@
namespace olympic { namespace olympic {
ox::String s_version = ox::String(OLYMPIC_APP_VERSION); ox::String appVersion = ox::String(OLYMPIC_APP_VERSION);
ox::Error run( ox::Error run(
ox::StringView project, ox::StringView project,

View File

@ -8,13 +8,13 @@
#include "aboutpopup.hpp" #include "aboutpopup.hpp"
namespace olympic { namespace olympic {
extern ox::String s_version; extern ox::String appVersion;
} }
namespace studio { namespace studio {
AboutPopup::AboutPopup(turbine::Context &ctx) noexcept { AboutPopup::AboutPopup(turbine::Context &ctx) noexcept {
m_text = ox::sfmt("{} - {}", keelCtx(ctx).appName, olympic::s_version); m_text = ox::sfmt("{} - {}", keelCtx(ctx).appName, olympic::appVersion);
} }
void AboutPopup::open() noexcept { void AboutPopup::open() noexcept {