| 189 | } |
| 190 | |
| 191 | CommandAction *CommandAction::commandActionWithIcon(QAction *original, const QIcon &newIcon) |
| 192 | { |
| 193 | auto proxyAction = new CommandAction(original); |
| 194 | proxyAction->setAction(original); |
| 195 | proxyAction->setIcon(newIcon); |
| 196 | proxyAction->setAttribute(UpdateText); |
| 197 | return proxyAction; |
| 198 | } |
nothing calls this directly
no test coverage detected