| 27 | CommandLineWidget::~CommandLineWidget() = default; |
| 28 | |
| 29 | void CommandLineWidget::setText(const QString& text) |
| 30 | { |
| 31 | if (m_text != text) { |
| 32 | m_text = text; |
| 33 | updateCommandLine(); |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | void CommandLineWidget::updateCommandLine() |
| 38 | { |
no outgoing calls