| 818 | } |
| 819 | |
| 820 | void ProjectManager::SetStatusText( |
| 821 | const TranslatableString& text, const StatusBarField& field) |
| 822 | { |
| 823 | const auto index = ProjectStatusFieldsRegistry::GetFieldIndex(mProject, field); |
| 824 | |
| 825 | if (index >= 0) |
| 826 | SetStatusText(text, index); |
| 827 | } |
| 828 | |
| 829 | void ProjectManager::SetStatusText(const TranslatableString& text, int number) |
| 830 | { |
no test coverage detected