| 60 | } |
| 61 | |
| 62 | const QString CPluginTigerVnc::Details() const |
| 63 | { |
| 64 | QString szDetails; |
| 65 | szDetails += "- " + tr("Dependency libraries") + "\n"; |
| 66 | #ifdef HAVE_LIBSSH |
| 67 | CChannelSSHTunnel channel(nullptr, nullptr, nullptr); |
| 68 | szDetails += channel.GetDetails(); |
| 69 | #endif |
| 70 | return szDetails; |
| 71 | } |
| 72 | |
| 73 | COperate *CPluginTigerVnc::OnCreateOperate(const QString &szID) |
| 74 | { |
nothing calls this directly
no test coverage detected