Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
f15660cb
Commit
f15660cb
authored
Apr 15, 2009
by
dt
Browse files
Merge branch '1.1' of git@scm.dev.nokia.troll.no:creator/mainline into 1.1
parents
1e0561e8
e61fa399
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdbengine.cpp
View file @
f15660cb
...
...
@@ -163,6 +163,20 @@ static int ¤tToken()
return
token
;
}
static
bool
isSkippable
(
int
type
)
{
return
type
==
RegisterListValues
&&
type
==
StackListThreads
&&
type
==
StackListFrames
&&
type
==
StackListLocals
&&
type
==
StackListArguments
&&
type
==
WatchVarAssign
&&
type
==
WatchVarListChildren
&&
type
==
WatchVarCreate
&&
type
==
WatchEvaluateExpression
&&
type
==
WatchToolTip
;
}
///////////////////////////////////////////////////////////////////////
//
// GdbEngine
...
...
@@ -680,7 +694,7 @@ void GdbEngine::handleResultRecord(const GdbResultRecord &record)
GdbCookie
cmd
=
m_cookieForToken
.
take
(
token
);
if
(
record
.
token
<
m_oldestAcceptableToken
)
{
if
(
record
.
token
<
m_oldestAcceptableToken
&&
isSkippable
(
cmd
.
type
)
)
{
//qDebug() << "### SKIPPING OLD RESULT " << record.toString();
//QMessageBox::information(m_mainWindow, tr("Skipped"), "xxx");
return
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment