Missed some unused ';' after Q_UNUSED

This commit is contained in:
Alessandro Portale
2009-07-13 18:55:11 +02:00
parent 3f1be148ef
commit 5438a3f72f
4 changed files with 8 additions and 8 deletions

View File

@@ -96,7 +96,7 @@ const char *PlainTextEditorEditable::kind() const
void PlainTextEditor::indentBlock(QTextDocument *doc, QTextBlock block, QChar typedChar)
{
Q_UNUSED(typedChar);
Q_UNUSED(typedChar)
// At beginning: Leave as is.
if (block == doc->begin())