Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
33271f0b
Commit
33271f0b
authored
Sep 16, 2009
by
hjk
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
debugger: disable some debug output again; also make more type known as 'simple
integral'
parent
b96b2a2b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
src/plugins/debugger/gdb/gdbengine.cpp
src/plugins/debugger/gdb/gdbengine.cpp
+1
-1
src/plugins/debugger/watchutils.cpp
src/plugins/debugger/watchutils.cpp
+2
-3
No files found.
src/plugins/debugger/gdb/gdbengine.cpp
View file @
33271f0b
...
...
@@ -85,7 +85,7 @@ namespace Internal {
using
namespace
Debugger
::
Constants
;
//#define DEBUG_PENDING 1
#define DEBUG_SUBITEM 1
//
#define DEBUG_SUBITEM 1
#if DEBUG_PENDING
# define PENDING_DEBUG(s) qDebug() << s
...
...
src/plugins/debugger/watchutils.cpp
View file @
33271f0b
...
...
@@ -333,10 +333,9 @@ bool isIntType(const QString &type)
<<
QLatin1String
(
"char"
)
<<
QLatin1String
(
"int"
)
<<
QLatin1String
(
"short"
)
<<
QLatin1String
(
"long"
)
<<
QLatin1String
(
"bool"
)
<<
QLatin1String
(
"signed char"
)
<<
QLatin1String
(
"unsigned"
)
<<
QLatin1String
(
"unsigned char"
)
<<
QLatin1String
(
"unsigned int"
)
<<
QLatin1String
(
"unsigned long"
)
<<
QLatin1String
(
"unsigned char"
)
<<
QLatin1String
(
"unsigned long"
)
<<
QLatin1String
(
"long long"
)
<<
QLatin1String
(
"unsigned long long"
);
return
types
.
contains
(
type
);
return
type
.
endsWith
(
QLatin1String
(
" int"
))
||
types
.
contains
(
type
);
}
bool
isSymbianIntType
(
const
QString
&
type
)
...
...
Write
Preview
Markdown
is supported
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