| 449 | } |
| 450 | |
| 451 | fs::path CFamiTrackerDoc::GetFileTitle() const |
| 452 | { |
| 453 | // Return file name without extension |
| 454 | fs::path FileName = static_cast<LPCWSTR>(GetTitle()); // // // |
| 455 | FileName.replace_extension(); |
| 456 | |
| 457 | if (FileName.extension() == ".bak") |
| 458 | FileName.replace_extension(); |
| 459 | if (FileName.extension() == ".ftm" || FileName.extension() == ".0cc") |
| 460 | FileName.replace_extension(); |
| 461 | |
| 462 | return FileName; |
| 463 | } |
| 464 | |
| 465 | bool CFamiTrackerDoc::IsFileLoaded() const |
| 466 | { |
no outgoing calls
no test coverage detected