From f0d2503432beb4382d33ca2b6471d23fbb7d9f9a Mon Sep 17 00:00:00 2001
From: Tobias Hunger <tobias.hunger@nokia.com>
Date: Tue, 15 Dec 2009 10:18:37 +0100
Subject: [PATCH] Fix warning about unused parameter

---
 src/shared/proparser/proeditormodel.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/shared/proparser/proeditormodel.cpp b/src/shared/proparser/proeditormodel.cpp
index f7fa988fc8e..61967cdc8b4 100644
--- a/src/shared/proparser/proeditormodel.cpp
+++ b/src/shared/proparser/proeditormodel.cpp
@@ -645,6 +645,7 @@ ProBlock *ProEditorModel::proBlock(const QModelIndex &index) const
 
 QString ProEditorModel::expressionToString(ProBlock *block, bool display) const
 {
+    Q_UNUSED(display);
     QString result;
     QList<ProItem*> items = block->items();
     for (int i = 0; i < items.count(); ++i) {
-- 
GitLab