Utils: Remove unused signal from OutputFormatter

Change-Id: I337a78f9edf8b63869b117e031c648e52e3203a0
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Christian Kandeler
2020-03-13 10:38:39 +01:00
parent 2c79196ab5
commit 54bf94afaf
2 changed files with 0 additions and 7 deletions

View File

@@ -45,8 +45,6 @@ namespace Internal { class OutputFormatterPrivate; }
class QTCREATOR_UTILS_EXPORT OutputFormatter : public QObject
{
Q_OBJECT
public:
OutputFormatter();
~OutputFormatter() override;
@@ -63,9 +61,6 @@ public:
void setBoldFontEnabled(bool enabled);
static QTextCharFormat linkFormat(const QTextCharFormat &inputFormat, const QString &href);
signals:
void contentChanged();
protected:
void initFormats();
virtual void clearLastLine();

View File

@@ -220,8 +220,6 @@ void QtOutputFormatter::appendMessage(const QString &txt, const QTextCharFormat
appendMessagePart(output.text, output.format);
cursor().endEditBlock();
emit contentChanged();
}
void QtOutputFormatter::appendLine(const LinkResult &lr, const QString &line, OutputFormat format)