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
dbe0d593
Commit
dbe0d593
authored
Feb 02, 2011
by
hjk
Browse files
debugger: be a bit more generous when deciding what's a 'skippable' function
parent
c2327457
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/watchutils.cpp
View file @
dbe0d593
...
...
@@ -163,13 +163,13 @@ QString currentTime()
bool
isSkippableFunction
(
const
QString
&
funcName
,
const
QString
&
fileName
)
{
if
(
fileName
.
endsWith
(
QLatin1String
(
"
kernel
/qobject.cpp"
)))
if
(
fileName
.
endsWith
(
QLatin1String
(
"/qobject.cpp"
)))
return
true
;
if
(
fileName
.
endsWith
(
QLatin1String
(
"
kernel
/moc_qobject.cpp"
)))
if
(
fileName
.
endsWith
(
QLatin1String
(
"/moc_qobject.cpp"
)))
return
true
;
if
(
fileName
.
endsWith
(
QLatin1String
(
"
kernel
/qmetaobject.cpp"
)))
if
(
fileName
.
endsWith
(
QLatin1String
(
"/qmetaobject.cpp"
)))
return
true
;
if
(
fileName
.
endsWith
(
QLatin1String
(
"
kernel
/qmetaobject_p.h"
)))
if
(
fileName
.
endsWith
(
QLatin1String
(
"/qmetaobject_p.h"
)))
return
true
;
if
(
fileName
.
endsWith
(
QLatin1String
(
".moc"
)))
return
true
;
...
...
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