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
6cf2cf86
Commit
6cf2cf86
authored
Apr 08, 2011
by
Friedemann Kleint
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Debugger: Fix warning, remove unused AttachTcf mode.
parent
7fafe867
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
2 deletions
+2
-2
src/plugins/debugger/cdb/cdbengine.cpp
src/plugins/debugger/cdb/cdbengine.cpp
+0
-1
src/plugins/debugger/debuggerconstants.h
src/plugins/debugger/debuggerconstants.h
+0
-1
src/plugins/debugger/debuggerrunner.cpp
src/plugins/debugger/debuggerrunner.cpp
+2
-0
No files found.
src/plugins/debugger/cdb/cdbengine.cpp
View file @
6cf2cf86
...
...
@@ -309,7 +309,6 @@ static inline bool validMode(DebuggerStartMode sm)
{
switch
(
sm
)
{
case
NoStartMode
:
case
AttachTcf
:
case
AttachCore
:
case
StartRemoteGdb
:
return
false
;
...
...
src/plugins/debugger/debuggerconstants.h
View file @
6cf2cf86
...
...
@@ -150,7 +150,6 @@ enum DebuggerStartMode
StartExternal
,
// Start binary found in file system
AttachExternal
,
// Attach to running process by process id
AttachCrashedExternal
,
// Attach to crashed process by process id
AttachTcf
,
// Attach to a running Target Communication Framework agent
AttachCore
,
// Attach to a core file
AttachToRemote
,
// Start and attach to a remote process
StartRemoteGdb
,
// Start gdb itself remotely
...
...
src/plugins/debugger/debuggerrunner.cpp
View file @
6cf2cf86
...
...
@@ -774,6 +774,8 @@ DebuggerEngine *DebuggerRunControlFactory::createEngine
return
createQmlEngine
(
sp
,
masterEngine
);
case
LldbEngineType
:
return
createLldbEngine
(
sp
);
default:
break
;
}
*
errorMessage
=
DebuggerRunControl
::
tr
(
"Unable to create a debugger engine of the type '%1'"
).
arg
(
_
(
engineTypeName
(
et
)));
...
...
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