aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/utils/ansiescapecodehandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/utils/ansiescapecodehandler.h')
-rw-r--r--src/libs/utils/ansiescapecodehandler.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libs/utils/ansiescapecodehandler.h b/src/libs/utils/ansiescapecodehandler.h
index b2e848f845..dec9cd39af 100644
--- a/src/libs/utils/ansiescapecodehandler.h
+++ b/src/libs/utils/ansiescapecodehandler.h
@@ -46,14 +46,13 @@ public:
class QTCREATOR_UTILS_EXPORT AnsiEscapeCodeHandler
{
public:
- AnsiEscapeCodeHandler();
QList<FormattedText> parseText(const FormattedText &input);
void endFormatScope();
private:
void setFormatScope(const QTextCharFormat &charFormat);
- bool m_previousFormatClosed;
+ bool m_previousFormatClosed = true;
QTextCharFormat m_previousFormat;
QString m_pendingText;
};