| 118 | } |
| 119 | |
| 120 | CommandAction::CommandAction(QObject *parent) |
| 121 | : QAction(parent), |
| 122 | d(new CommandActionPrivate(this)) |
| 123 | { |
| 124 | connect(this, &QAction::changed, d, &CommandActionPrivate::updateToolTipWithKeySequence); |
| 125 | d->updateState(); |
| 126 | } |
| 127 | |
| 128 | CommandAction::~CommandAction() |
| 129 | { |
nothing calls this directly
no test coverage detected