| 153 | } |
| 154 | |
| 155 | QString Command::description() const |
| 156 | { |
| 157 | if (!d->defaultText.isEmpty()) |
| 158 | return d->defaultText; |
| 159 | if (QAction *act = action()) { |
| 160 | const QString text = stripAccelerator(act->text()); |
| 161 | if (!text.isEmpty()) |
| 162 | return text; |
| 163 | } |
| 164 | return d->cmdId; |
| 165 | } |
| 166 | |
| 167 | QString Command::id() const |
| 168 | { |
no test coverage detected