forked from qt-creator/qt-creator
Removing some unused semicolons after Q_UNUSED
There were both variants, with and without extra semicolon.
This commit is contained in:
@@ -350,7 +350,7 @@ void DebuggerOutputWindow::showOutput(int channel, const QString &output)
|
||||
|
||||
void DebuggerOutputWindow::showInput(int channel, const QString &input)
|
||||
{
|
||||
Q_UNUSED(channel);
|
||||
Q_UNUSED(channel)
|
||||
m_inputText->appendPlainText(input);
|
||||
QTextCursor cursor = m_inputText->textCursor();
|
||||
cursor.movePosition(QTextCursor::End);
|
||||
|
||||
Reference in New Issue
Block a user