| 91 | COMPtr<IPersistFile> m_file; |
| 92 | |
| 93 | void throwOnFail(HRESULT r, const QString& s) |
| 94 | { |
| 95 | if (FAILED(r)) { |
| 96 | throw ShellLinkException(QString("%1, %2").arg(s).arg(formatSystemMessage(r))); |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | COMPtr<IShellLink> createShellLink() |
| 101 | { |
nothing calls this directly
no test coverage detected