--------------------------------------------------------------------------
| 73 | |
| 74 | // -------------------------------------------------------------------------- |
| 75 | QString ctkErrorLogAbstractMessageHandler::handlerPrettyName()const |
| 76 | { |
| 77 | Q_D(const ctkErrorLogAbstractMessageHandler); |
| 78 | if (d->HandlerPrettyName.isEmpty()) |
| 79 | { |
| 80 | return this->handlerName(); |
| 81 | } |
| 82 | else |
| 83 | { |
| 84 | return d->HandlerPrettyName; |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | // -------------------------------------------------------------------------- |
| 89 | void ctkErrorLogAbstractMessageHandler::setHandlerPrettyName(const QString& newHandlerPrettyName) |
no test coverage detected