| 124 | } |
| 125 | |
| 126 | void HelpController::openPage(const QString &page) |
| 127 | { |
| 128 | Q_ASSERT(isAvailable()); |
| 129 | auto d = s_helpController(); |
| 130 | d->startProcess(); |
| 131 | d->sendCommand(QByteArray( |
| 132 | "setSource qthelp://com.kdab.GammaRay." GAMMARAY_PLUGIN_VERSION "/") |
| 133 | + page.toUtf8() |
| 134 | + ";syncContents\n"); |
| 135 | } |
nothing calls this directly
no test coverage detected