MCPcopy Create free account
hub / github.com/WarmUpTill/SceneSwitcher / formatLastUsedText

Function formatLastUsedText

lib/variables/variable-tab.cpp:144–153  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

142}
143
144static QString formatLastUsedText(Variable *variable)
145{
146 auto lastUsed = variable->GetSecondsSinceLastUse();
147 if (!lastUsed) {
148 return obs_module_text(
149 "AdvSceneSwitcher.variableTab.lastUsed.text.never");
150 }
151
152 return FormatRelativeTime(*lastUsed);
153}
154
155static QString formatLastChangedText(Variable *variable)
156{

Callers 1

getCellLabelsFunction · 0.85

Calls 3

obs_module_textFunction · 0.85
FormatRelativeTimeFunction · 0.85

Tested by

no test coverage detected