From d74c4f8aeb4e3b9487a267dd2097fde9b713e96d Mon Sep 17 00:00:00 2001
From: Robert Loehning <robert.loehning@nokia.com>
Date: Fri, 15 Oct 2010 15:27:23 +0200
Subject: [PATCH] Fixed warning about unused parameter in BreakHandler

Reviewed-by: hjk
---
 src/plugins/debugger/breakhandler.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/plugins/debugger/breakhandler.cpp b/src/plugins/debugger/breakhandler.cpp
index 2385528b7ad..126ebf09ad3 100644
--- a/src/plugins/debugger/breakhandler.cpp
+++ b/src/plugins/debugger/breakhandler.cpp
@@ -691,6 +691,7 @@ bool BreakHandler::isActive() const
 
 void BreakHandler::initializeFromTemplate(BreakHandler *other)
 {
+    Q_UNUSED(other)
     m_inserted.clear();
     foreach(BreakpointData *data, m_bp) {
         if (m_engine->acceptsBreakpoint(data)) {
-- 
GitLab