| 61 | } |
| 62 | |
| 63 | void setIcon(const QString& file, int i) |
| 64 | { |
| 65 | if (file.isEmpty()) { |
| 66 | return; |
| 67 | } |
| 68 | |
| 69 | const auto r = m_link->SetIconLocation(file.toStdWString().c_str(), i); |
| 70 | throwOnFail(r, QString("failed to set icon '%1' @ %2").arg(file).arg(i)); |
| 71 | } |
| 72 | |
| 73 | void setWorkingDirectory(const QString& s) |
| 74 | { |
no test coverage detected