| 397 | } |
| 398 | |
| 399 | agi::fs::path SubsController::Filename() const { |
| 400 | if (!filename.empty()) return filename; |
| 401 | |
| 402 | // Apple HIG says "untitled" should not be capitalised |
| 403 | #ifndef __WXMAC__ |
| 404 | return from_wx(_("Untitled")); |
| 405 | #else |
| 406 | return from_wx(_("untitled")); |
| 407 | #endif |
| 408 | } |
no test coverage detected