| 51 | } |
| 52 | |
| 53 | void setDescription(const QString& s) |
| 54 | { |
| 55 | if (s.isEmpty()) { |
| 56 | return; |
| 57 | } |
| 58 | |
| 59 | const auto r = m_link->SetDescription(s.toStdWString().c_str()); |
| 60 | throwOnFail(r, QString("failed to set description '%1'").arg(s)); |
| 61 | } |
| 62 | |
| 63 | void setIcon(const QString& file, int i) |
| 64 | { |
no test coverage detected