| 1126 | } |
| 1127 | |
| 1128 | void BaseApplication::sendMessage(const QByteArray msg) |
| 1129 | { |
| 1130 | auto app = dynamic_cast<QtSingleApplication*>(this->getQApplication()); |
| 1131 | |
| 1132 | if (nullptr != app) |
| 1133 | app->sendMessage(msg); |
| 1134 | |
| 1135 | mitkThrow() << "Method not implemented."; |
| 1136 | } |
| 1137 | } |
nothing calls this directly
no test coverage detected