OSDN Git Service

Fixed warning about unused parameter in BreakHandler
authorRobert Loehning <robert.loehning@nokia.com>
Fri, 15 Oct 2010 13:27:23 +0000 (15:27 +0200)
committerRobert Loehning <robert.loehning@nokia.com>
Fri, 15 Oct 2010 13:33:34 +0000 (15:33 +0200)
Reviewed-by: hjk
src/plugins/debugger/breakhandler.cpp

index 2385528..126ebf0 100644 (file)
@@ -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)) {