debugger: make QAction a base class of DebuggerAction

This commit is contained in:
hjk
2009-03-19 15:54:52 +01:00
parent 5999c35d2c
commit c110da750b
8 changed files with 35 additions and 58 deletions

View File

@@ -368,10 +368,10 @@ WatchHandler::WatchHandler()
m_incompleteSet.clear();
m_displaySet = m_completeSet;
connect(theDebuggerAction(WatchExpression)->action(),
connect(theDebuggerAction(WatchExpression),
SIGNAL(triggered()), this, SLOT(watchExpression()));
connect(theDebuggerAction(RemoveWatchExpression)->action(),
connect(theDebuggerAction(RemoveWatchExpression),
SIGNAL(triggered()), this, SLOT(removeWatchExpression()));
}