Debugger: Remove GdbCommand::callbackName

This was a debugging aid that has not been needed for a while.

Change-Id: Ia79e8e91b6648bdb807836443b01dd325d819640
Reviewed-by: hjk <hjk@theqtcompany.com>
This commit is contained in:
hjk
2015-02-05 22:46:09 +01:00
parent 6a2d6b6d20
commit d9e7a6e6af
6 changed files with 17 additions and 27 deletions

View File

@@ -179,12 +179,11 @@ private: ////////// Gdb Command Management //////////
struct GdbCommand
{
GdbCommand()
: flags(0), callback(0), callbackName(0)
: flags(0), callback(0)
{}
int flags;
GdbCommandCallback callback;
const char *callbackName;
QByteArray command;
QVariant cookie;
QTime postTime;
@@ -200,11 +199,9 @@ protected:
void postCommand(const QByteArray &command,
GdbCommandFlags flags,
GdbCommandCallback callback = 0,
const char *callbackName = 0,
const QVariant &cookie = QVariant());
void postCommand(const QByteArray &command,
GdbCommandCallback callback = 0,
const char *callbackName = 0,
const QVariant &cookie = QVariant());
private:
void postCommandHelper(const GdbCommand &cmd);