Skip to content
GitLab
Menu
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
f8d96f09
Commit
f8d96f09
authored
Jul 08, 2010
by
hjk
Browse files
debugger: rename startDebugger() to startEngine()
parent
3145b270
Changes
14
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/cdb/cdbdebugengine.cpp
View file @
f8d96f09
...
...
@@ -374,7 +374,7 @@ void CdbDebugEngine::startupChecks()
syncDebuggerPaths
();
}
void
CdbDebugEngine
::
start
Debugger
()
void
CdbDebugEngine
::
start
Engine
()
{
QTC_ASSERT
(
state
()
==
EngineStarting
,
qDebug
()
<<
state
());
const
DebuggerStartParameters
&
sp
=
startParameters
();
...
...
src/plugins/debugger/cdb/cdbdebugengine.h
View file @
f8d96f09
...
...
@@ -58,7 +58,7 @@ public:
virtual
void
shutdown
();
virtual
void
setToolTipExpression
(
const
QPoint
&
mousePos
,
TextEditor
::
ITextEditor
*
editor
,
int
cursorPos
);
virtual
void
start
Debugger
();
virtual
void
start
Engine
();
virtual
void
exitDebugger
();
virtual
void
detachDebugger
();
virtual
void
updateWatchData
(
const
WatchData
&
data
);
...
...
src/plugins/debugger/debuggerengine.cpp
View file @
f8d96f09
...
...
@@ -636,7 +636,7 @@ void DebuggerEngine::startDebugger(DebuggerRunControl *runControl)
->
setEnabled
(
engineCapabilities
&
DisassemblerCapability
);
setState
(
EngineStarting
);
start
Debugger
();
start
Engine
();
}
void
DebuggerEngine
::
breakByFunctionMain
()
...
...
src/plugins/debugger/debuggerengine.h
View file @
f8d96f09
...
...
@@ -126,7 +126,7 @@ public:
TextEditor
::
ITextEditor
*
/* editor */
,
int
/* cursorPos */
)
{
}
void
initializeFromTemplate
(
DebuggerEngine
*
other
);
void
startDebugger
(
DebuggerRunControl
*
runControl
);
virtual
void
start
Debugger
()
{}
virtual
void
start
Engine
()
{}
virtual
void
exitDebugger
()
{}
virtual
void
detachDebugger
()
{}
virtual
void
updateWatchData
(
const
WatchData
&
/* data */
)
{
}
...
...
src/plugins/debugger/gdb/gdbengine.cpp
View file @
f8d96f09
...
...
@@ -1759,7 +1759,7 @@ AbstractGdbAdapter *GdbEngine::createAdapter()
}
}
void
GdbEngine
::
start
Debugger
()
void
GdbEngine
::
start
Engine
()
{
//qDebug() << "GDB START DEBUGGER";
QTC_ASSERT
(
state
()
==
EngineStarting
,
qDebug
()
<<
state
());
...
...
src/plugins/debugger/gdb/gdbengine.h
View file @
f8d96f09
...
...
@@ -105,7 +105,7 @@ private:
private:
////////// General Interface //////////
virtual
void
start
Debugger
();
virtual
void
start
Engine
();
virtual
unsigned
debuggerCapabilities
()
const
;
virtual
void
exitDebugger
();
virtual
void
quitDebugger
();
...
...
src/plugins/debugger/pdb/pdbengine.cpp
View file @
f8d96f09
...
...
@@ -138,7 +138,7 @@ void PdbEngine::exitDebugger()
setState
(
DebuggerNotReady
);
}
void
PdbEngine
::
start
Debugger
()
void
PdbEngine
::
start
Engine
()
{
QTC_ASSERT
(
state
()
==
EngineStarting
,
qDebug
()
<<
state
());
...
...
src/plugins/debugger/pdb/pdbengine.h
View file @
f8d96f09
...
...
@@ -72,7 +72,7 @@ private:
void
shutdown
();
void
setToolTipExpression
(
const
QPoint
&
mousePos
,
TextEditor
::
ITextEditor
*
editor
,
int
cursorPos
);
void
start
Debugger
();
void
start
Engine
();
void
exitDebugger
();
...
...
src/plugins/debugger/qml/qmlengine.cpp
View file @
f8d96f09
...
...
@@ -226,7 +226,7 @@ void QmlEngine::exitDebugger()
const
int
serverPort
=
3768
;
void
QmlEngine
::
start
Debugger
()
void
QmlEngine
::
start
Engine
()
{
QTC_ASSERT
(
state
()
==
EngineStarting
,
qDebug
()
<<
state
());
const
DebuggerStartParameters
&
sp
=
startParameters
();
...
...
src/plugins/debugger/qml/qmlengine.h
View file @
f8d96f09
...
...
@@ -88,7 +88,7 @@ private:
void
shutdown
();
void
setToolTipExpression
(
const
QPoint
&
mousePos
,
TextEditor
::
ITextEditor
*
editor
,
int
cursorPos
);
void
start
Debugger
();
void
start
Engine
();
void
exitDebugger
();
void
continueInferior
();
...
...
src/plugins/debugger/script/scriptengine.cpp
View file @
f8d96f09
...
...
@@ -229,7 +229,7 @@ void ScriptEngine::exitDebugger()
setState
(
DebuggerNotReady
);
}
void
ScriptEngine
::
start
Debugger
()
void
ScriptEngine
::
start
Engine
()
{
QTC_ASSERT
(
state
()
==
EngineStarting
,
qDebug
()
<<
state
());
showMessage
(
_
(
"STARTING SCRIPT DEBUGGER"
),
LogMisc
);
...
...
src/plugins/debugger/script/scriptengine.h
View file @
f8d96f09
...
...
@@ -71,7 +71,7 @@ private:
void
shutdown
();
void
setToolTipExpression
(
const
QPoint
&
mousePos
,
TextEditor
::
ITextEditor
*
editor
,
int
cursorPos
);
void
start
Debugger
();
void
start
Engine
();
void
exitDebugger
();
void
continueInferior
();
...
...
src/plugins/debugger/tcf/tcfengine.cpp
View file @
f8d96f09
...
...
@@ -200,7 +200,7 @@ void TcfEngine::exitDebugger()
SDEBUG
(
"TcfEngine::exitDebugger()"
);
}
void
TcfEngine
::
start
Debugger
()
void
TcfEngine
::
start
Engine
()
{
QTC_ASSERT
(
state
()
==
EngineStarting
,
qDebug
()
<<
state
());
setState
(
InferiorRunningRequested
);
...
...
src/plugins/debugger/tcf/tcfengine.h
View file @
f8d96f09
...
...
@@ -74,7 +74,7 @@ private:
void
shutdown
();
void
setToolTipExpression
(
const
QPoint
&
mousePos
,
TextEditor
::
ITextEditor
*
editor
,
int
cursorPos
);
void
start
Debugger
();
void
start
Engine
();
void
exitDebugger
();
void
continueInferior
();
...
...
Write
Preview
Supports
Markdown
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