| 688 | |
| 689 | |
| 690 | void UBApplicationController::showMessage(const QString& message, bool showSpinningWheel) |
| 691 | { |
| 692 | if (!UBApplication::closingDown()) |
| 693 | { |
| 694 | if (mMainMode == Document) |
| 695 | { |
| 696 | UBApplication::boardController->hideMessage(); |
| 697 | UBApplication::documentController->showMessage(message, showSpinningWheel); |
| 698 | } |
| 699 | else |
| 700 | { |
| 701 | UBApplication::documentController->hideMessage(); |
| 702 | UBApplication::boardController->showMessage(message, showSpinningWheel); |
| 703 | } |
| 704 | } |
| 705 | } |
| 706 | |
| 707 | |
| 708 | void UBApplicationController::importFile(const QString& pFilePath) |
nothing calls this directly
no test coverage detected