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
Marco Bubke
flatpak-qt-creator
Commits
500ab0f0
Commit
500ab0f0
authored
Jan 15, 2010
by
Robert Loehning
Browse files
debugger: Using macro, removed unused QString
parent
048275b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/trkgdbadapter.cpp
View file @
500ab0f0
...
...
@@ -1650,7 +1650,6 @@ void TrkGdbAdapter::handleCreateProcess(const TrkResult &result)
logMessage
(
startMsg
);
const
QString
fileName
=
m_symbolFile
;
if
(
m_symbolFile
.
isEmpty
())
{
logMessage
(
_
(
"WARNING: No symbol file available."
));
}
else
{
...
...
@@ -1659,7 +1658,7 @@ void TrkGdbAdapter::handleCreateProcess(const TrkResult &result)
// have to wait for the TRK startup to learn the load address.
//m_engine->postCommand("add-symbol-file \"" + symbolFile + "\" "
// + QByteArray::number(m_session.codeseg));
m_engine
->
postCommand
(
"symbol-file
\"
"
+
m_symbolFile
+
"
\"
"
);
m_engine
->
postCommand
(
_
(
"symbol-file
\"
%1
\"
"
).
arg
(
m_symbolFile
)
);
}
m_engine
->
postCommand
(
_
(
"target remote "
)
+
gdbServerName
(),
CB
(
handleTargetRemote
));
...
...
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