slow
| 134 | } |
| 135 | // slow |
| 136 | bool Util::isUsingDefaultIcon(const QString& exePath) |
| 137 | { |
| 138 | UINT iconCount = ExtractIconEx(exePath.toStdWString().c_str(), -1, NULL, NULL, 0); |
| 139 | return iconCount == 0; |
| 140 | } |
| 141 | // slow |
| 142 | bool Util::isDefaultExeIcon(const QIcon& icon) { |
| 143 | static const QSize IconSize(16, 16); |
nothing calls this directly
no outgoing calls
no test coverage detected