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
115c1f1b
Commit
115c1f1b
authored
May 06, 2009
by
Oswald Buddenhagen
Browse files
add missing _() to currently commented out debugMessage() calls
parent
6396d000
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdbengine.cpp
View file @
115c1f1b
...
...
@@ -1044,14 +1044,14 @@ void GdbEngine::handleAsyncOutput(const GdbMi &data)
QString
funcName
=
_
(
frame
.
findChild
(
"func"
).
data
());
QString
fileName
=
QString
::
fromLocal8Bit
(
frame
.
findChild
(
"file"
).
data
());
if
(
isLeavableFunction
(
funcName
,
fileName
))
{
//debugMessage("LEAVING
"
+ funcName);
//debugMessage(
_(
"LEAVING
")
+ funcName);
++
stepCounter
;
q
->
stepOutExec
();
//stepExec();
return
;
}
if
(
isSkippableFunction
(
funcName
,
fileName
))
{
//debugMessage("SKIPPING
"
+ funcName);
//debugMessage(
_(
"SKIPPING
")
+ funcName);
++
stepCounter
;
q
->
stepExec
();
return
;
...
...
@@ -1071,7 +1071,7 @@ void GdbEngine::handleAsyncOutput(const GdbMi &data)
if
(
reason
==
"breakpoint-hit"
)
{
q
->
showStatusMessage
(
tr
(
"Stopped at breakpoint."
));
GdbMi
frame
=
data
.
findChild
(
"frame"
);
//debugMessage("HIT BREAKPOINT: " + frame.toString());
//debugMessage(
_(
"HIT BREAKPOINT: " + frame.toString())
)
;
m_currentFrame
=
_
(
frame
.
findChild
(
"addr"
).
data
()
+
'%'
+
frame
.
findChild
(
"func"
).
data
()
+
'%'
);
...
...
@@ -1272,7 +1272,7 @@ QString GdbEngine::fullName(const QString &fileName)
if
(
fileName
.
isEmpty
())
return
QString
();
QString
full
=
m_shortToFullName
.
value
(
fileName
,
QString
());
//debugMessage("RESOLVING: " + fileName + " " + full);
//debugMessage(
_(
"RESOLVING: "
)
+ fileName + " " + full);
if
(
!
full
.
isEmpty
())
return
full
;
QFileInfo
fi
(
fileName
);
...
...
@@ -1282,7 +1282,7 @@ QString GdbEngine::fullName(const QString &fileName)
#ifdef Q_OS_WIN
full
=
QDir
::
cleanPath
(
full
);
#endif
//debugMessage("STORING: " + fileName + " " + full);
//debugMessage(
_(
"STORING: "
)
+ fileName + " " + full);
m_shortToFullName
[
fileName
]
=
full
;
m_fullToShortName
[
full
]
=
fileName
;
return
full
;
...
...
@@ -1575,7 +1575,7 @@ void GdbEngine::handleStart(const GdbResultRecord &response, const QVariant &)
QString
msg
=
_
(
response
.
data
.
findChild
(
"consolestreamoutput"
).
data
());
QRegExp
needle
(
_
(
"
\\
bEntry point: (0x[0-9a-f]+)
\\
b"
));
if
(
needle
.
indexIn
(
msg
)
!=
-
1
)
{
//debugMessage("STREAM: " + msg + " " + needle.cap(1));
//debugMessage(
_(
"STREAM: "
)
+ msg + " " + needle.cap(1));
postCommand
(
_
(
"tbreak *"
)
+
needle
.
cap
(
1
));
m_waitingForFirstBreakpointToBeHit
=
true
;
qq
->
notifyInferiorRunningRequested
();
...
...
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