Skip to content
Snippets Groups Projects
Commit 6f056c9e authored by hjk's avatar hjk Committed by hjk
Browse files

debugger: remove unneeded SourceAgent inheritance from QObject


Change-Id: I4367f9ed8198abfc8a6afacbfbf8df5a777a4bf6
Reviewed-by: default avatarRobert Löhning <robert.loehning@nokia.com>
Reviewed-by: default avatarhjk <qthjk@ovi.com>
parent 7521a1e1
No related branches found
No related tags found
No related merge requests found
......@@ -107,7 +107,7 @@ SourceAgentPrivate::~SourceAgentPrivate()
}
SourceAgent::SourceAgent(DebuggerEngine *engine)
: QObject(0), d(new SourceAgentPrivate)
: d(new SourceAgentPrivate)
{
d->engine = engine;
}
......
......@@ -33,7 +33,7 @@
#ifndef DEBUGGER_SOURCE_AGENT_H
#define DEBUGGER_SOURCE_AGENT_H
#include <QObject>
#include <QString>
namespace Debugger {
......@@ -42,7 +42,7 @@ class DebuggerEngine;
namespace Internal {
class SourceAgentPrivate;
class SourceAgent : public QObject
class SourceAgent
{
public:
explicit SourceAgent(Debugger::DebuggerEngine *engine);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment