Skip to content
Snippets Groups Projects
Commit 54430ae1 authored by hjk's avatar hjk
Browse files

Debugger: Modernize MemoryView connections.


Change-Id: I61b2f7a11bb516b4d14226cfdbbc581243659e4f
Reviewed-by: default avatarChristian Stenger <christian.stenger@theqtcompany.com>
parent a3711ee2
No related branches found
No related tags found
No related merge requests found
...@@ -88,10 +88,10 @@ MemoryAgent::MemoryAgent(DebuggerEngine *engine) ...@@ -88,10 +88,10 @@ MemoryAgent::MemoryAgent(DebuggerEngine *engine)
: QObject(engine), m_engine(engine) : QObject(engine), m_engine(engine)
{ {
QTC_CHECK(engine); QTC_CHECK(engine);
connect(engine, SIGNAL(stateChanged(Debugger::DebuggerState)), connect(engine, &DebuggerEngine::stateChanged,
this, SLOT(engineStateChanged(Debugger::DebuggerState))); this, &MemoryAgent::engineStateChanged);
connect(engine, SIGNAL(stackFrameCompleted()), this, connect(engine, &DebuggerEngine::stackFrameCompleted,
SLOT(updateContents())); this, &MemoryAgent::updateContents);
} }
MemoryAgent::~MemoryAgent() MemoryAgent::~MemoryAgent()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment