Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
973f607e
Commit
973f607e
authored
Oct 12, 2009
by
Oswald Buddenhagen
Browse files
centralize entering the InferiorStartFailed state
parent
1a27681c
Changes
4
Show whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/attachgdbadapter.cpp
View file @
973f607e
...
...
@@ -111,7 +111,6 @@ void AttachGdbAdapter::handleAttach(const GdbResponse &response)
m_engine
->
updateAll
();
}
else
{
QString
msg
=
__
(
response
.
data
.
findChild
(
"msg"
).
data
());
setState
(
InferiorStartFailed
);
emit
inferiorStartFailed
(
msg
);
}
}
...
...
src/plugins/debugger/gdb/coregdbadapter.cpp
View file @
973f607e
...
...
@@ -121,7 +121,6 @@ void CoreGdbAdapter::handleTargetCore1(const GdbResponse &response)
int
pos1
=
console
.
data
().
indexOf
(
'`'
);
int
pos2
=
console
.
data
().
indexOf
(
'\''
);
if
(
pos1
==
-
1
||
pos2
==
-
1
)
{
setState
(
InferiorStartFailed
);
emit
inferiorStartFailed
(
tr
(
"No binary found."
));
}
else
{
m_executable
=
console
.
data
().
mid
(
pos1
+
1
,
pos2
-
pos1
-
1
);
...
...
@@ -134,7 +133,6 @@ void CoreGdbAdapter::handleTargetCore1(const GdbResponse &response)
}
}
else
{
const
QByteArray
msg
=
response
.
data
.
findChild
(
"msg"
).
data
();
setState
(
InferiorStartFailed
);
emit
inferiorStartFailed
(
msg
);
}
}
...
...
@@ -149,7 +147,6 @@ void CoreGdbAdapter::handleDetach1(const GdbResponse &response)
.
arg
(
fi
.
absoluteFilePath
()),
CB
(
handleFileExecAndSymbols
));
}
else
{
const
QByteArray
msg
=
response
.
data
.
findChild
(
"msg"
).
data
();
setState
(
InferiorStartFailed
);
emit
inferiorStartFailed
(
msg
);
}
}
...
...
@@ -168,7 +165,6 @@ void CoreGdbAdapter::handleFileExecAndSymbols(const GdbResponse &response)
.
arg
(
__
(
response
.
data
.
findChild
(
"msg"
).
data
()));
setState
(
InferiorUnrunnable
);
m_engine
->
updateAll
();
//setState(InferiorStartFailed);
// emit inferiorStartFailed(msg);
}
}
...
...
@@ -185,7 +181,6 @@ void CoreGdbAdapter::handleTargetCore2(const GdbResponse &response)
.
arg
(
__
(
response
.
data
.
findChild
(
"msg"
).
data
()));
setState
(
InferiorUnrunnable
);
m_engine
->
updateAll
();
//setState(InferiorStartFailed);
// emit inferiorStartFailed(msg);
}
}
...
...
src/plugins/debugger/gdb/gdbengine.cpp
View file @
973f607e
...
...
@@ -4218,6 +4218,7 @@ void GdbEngine::handleInferiorStartFailed(const QString &msg)
{
debugMessage
(
_
(
"INFERIOR START FAILED"
));
showMessageBox
(
QMessageBox
::
Critical
,
tr
(
"Inferior start failed"
),
msg
);
setState
(
InferiorStartFailed
);
shutdown
();
}
...
...
src/plugins/debugger/gdb/plaingdbadapter.cpp
View file @
973f607e
...
...
@@ -141,7 +141,6 @@ void PlainGdbAdapter::handleExecRun(const GdbResponse &response)
const
QByteArray
&
msg
=
response
.
data
.
findChild
(
"msg"
).
data
();
//QTC_ASSERT(status() == InferiorRunning, /**/);
//interruptInferior();
setState
(
InferiorStartFailed
);
emit
inferiorStartFailed
(
msg
);
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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