Debugger: Fully qualify signals.

This commit is contained in:
Friedemann Kleint
2011-02-04 16:07:58 +01:00
parent 0cd2763873
commit debcc270ee
2 changed files with 3 additions and 3 deletions

View File

@@ -250,7 +250,7 @@ public:
virtual bool canDisplayTooltip() const { return state() == InferiorStopOk; }
signals:
void stateChanged(const DebuggerState &state);
void stateChanged(const Debugger::DebuggerState &state);
void updateViewsRequested();
/*
* For "external" clients of a debugger run control that needs to do

View File

@@ -73,7 +73,7 @@ IPCEngineHost::IPCEngineHost (const DebuggerStartParameters &startParameters)
, m_cookie(1)
, m_device(0)
{
connect(this, SIGNAL(stateChanged(DebuggerState)), SLOT(m_stateChanged(DebuggerState)));
connect(this, SIGNAL(stateChanged(Debugger::DebuggerState)), SLOT(m_stateChanged(Debugger::DebuggerState)));
}
IPCEngineHost::~IPCEngineHost()
@@ -583,7 +583,7 @@ void IPCEngineHost::rpcCallback(quint64 f, QByteArray payload)
}
}
void IPCEngineHost::m_stateChanged(const DebuggerState &state)
void IPCEngineHost::m_stateChanged(const Debugger::DebuggerState &state)
{
QByteArray p;
{