debugger: fix wrong assert when no engine could be constructed

This commit is contained in:
hjk
2010-12-15 09:17:31 +01:00
parent bfd3186b65
commit 5e72be24ab
2 changed files with 135 additions and 133 deletions

View File

@@ -102,7 +102,7 @@ public:
void startFailed();
void debuggingFinished();
RunConfiguration *runConfiguration() const;
DebuggerEngine *engine();
DebuggerEngine *engine(); // FIXME: Remove. Only used by Maemo support.
void showMessage(const QString &msg, int channel);
@@ -120,6 +120,7 @@ protected:
const DebuggerStartParameters &startParameters() const;
private:
friend class Internal::DebuggerRunControlFactory;
QScopedPointer<Internal::DebuggerRunControlPrivate> d;
};