forked from qt-creator/qt-creator
debugger: don't duplicated "full name" information in break response
Less information to keep in sync. Change-Id: Icd862bbf8965eefd8ea3ad17b6f574b1f85bb8d2 Reviewed-on: http://codereview.qt.nokia.com/1069 Reviewed-by: hjk <qthjk@ovi.com> Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
This commit is contained in:
@@ -317,8 +317,6 @@ QString BreakpointResponse::toString() const
|
||||
ts << " Number: " << id.toString();
|
||||
if (pending)
|
||||
ts << " [pending]";
|
||||
if (!fullName.isEmpty())
|
||||
ts << " FullName: " << fullName;
|
||||
if (!functionName.isEmpty())
|
||||
ts << " Function: " << functionName;
|
||||
if (multiple)
|
||||
@@ -334,7 +332,6 @@ void BreakpointResponse::fromParameters(const BreakpointParameters &p)
|
||||
{
|
||||
BreakpointParameters::operator=(p);
|
||||
id = BreakpointResponseId();
|
||||
fullName.clear();
|
||||
multiple = false;
|
||||
correctedLineNumber = 0;
|
||||
hitCount = 0;
|
||||
|
||||
Reference in New Issue
Block a user