debugger: polish module symbols

This commit is contained in:
hjk
2010-11-26 09:58:34 +01:00
parent a9f825fc2e
commit 7d8d51677b
16 changed files with 173 additions and 106 deletions

View File

@@ -247,7 +247,6 @@ public:
void handleStartFailed();
bool debuggerActionsEnabled() const;
static bool debuggerActionsEnabled(DebuggerState state);
void showModuleSymbols(const QString &moduleName, const Internal::Symbols &symbols);
void breakByFunction(const QString &functionName);
void breakByFunctionMain();
@@ -332,15 +331,18 @@ protected:
protected:
DebuggerRunControl *runControl() const;
static QString msgWatchpointTriggered(BreakpointId id, int number, quint64 address);
static QString msgWatchpointTriggered(BreakpointId id, int number, quint64 address,
const QString &threadId);
static QString msgBreakpointTriggered(BreakpointId id, int number, const QString &threadId);
static QString msgWatchpointTriggered(BreakpointId id,
int number, quint64 address);
static QString msgWatchpointTriggered(BreakpointId id,
int number, quint64 address, const QString &threadId);
static QString msgBreakpointTriggered(BreakpointId id,
int number, const QString &threadId);
static QString msgStopped(const QString &reason = QString());
static QString msgStoppedBySignal(const QString &meaning, const QString &name);
static QString msgStoppedByException(const QString &description, const QString &threadId);
static QString msgStoppedByException(const QString &description,
const QString &threadId);
static QString msgInterrupted();
void showStoppedBySignalMessageBox(QString meaning, QString name);
void showStoppedBySignalMessageBox(const QString meaning, QString name);
void showStoppedByExceptionMessageBox(const QString &description);
private:
@@ -349,7 +351,6 @@ private:
void setState(DebuggerState state, bool forced = false);
void setSlaveEngine(bool value);
friend class DebuggerEnginePrivate;
DebuggerEnginePrivate *d;
};