| 142 | } |
| 143 | |
| 144 | static 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 | |
| 155 | static QString formatLastChangedText(Variable *variable) |
| 156 | { |
no test coverage detected