forked from qt-creator/qt-creator
Editor: Fix whitespace cleaning.
Task-number: QTCREATORBUG-7994 Change-Id: I6c197ccc3a148555018e8f8184d116c88d7ea400 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com> Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
This commit is contained in:
@@ -34,16 +34,18 @@ class JavaIndenter : public TextEditor::Indenter
|
||||
{
|
||||
public:
|
||||
JavaIndenter();
|
||||
virtual ~JavaIndenter();
|
||||
~JavaIndenter() override;
|
||||
|
||||
bool isElectricCharacter(const QChar &ch) const;
|
||||
bool isElectricCharacter(const QChar &ch) const override;
|
||||
|
||||
virtual void indentBlock(QTextDocument *doc,
|
||||
const QTextBlock &block,
|
||||
const QChar &typedChar,
|
||||
const TextEditor::TabSettings &tabSettings);
|
||||
void indentBlock(QTextDocument *doc,
|
||||
const QTextBlock &block,
|
||||
const QChar &typedChar,
|
||||
const TextEditor::TabSettings &tabSettings) override;
|
||||
|
||||
int indentFor(const QTextBlock &block, const TextEditor::TabSettings &tabSettings) override;
|
||||
};
|
||||
}
|
||||
}
|
||||
} // namespace Internal
|
||||
} // namespace Android
|
||||
|
||||
#endif // JAVAINDENTER_H
|
||||
|
||||
Reference in New Issue
Block a user