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
Tobias Hunger
qt-creator
Commits
03492f24
Commit
03492f24
authored
Sep 08, 2010
by
Christian Kandeler
Browse files
QML debugging: Adaptations for Maemo.
Reviewed-by: Lasse Holmstedt
parent
29b304e7
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/debuggerrunner.cpp
View file @
03492f24
...
...
@@ -260,6 +260,7 @@ static DebuggerEngineType engineForToolChain(int toolChainType)
case
ProjectExplorer
::
ToolChain
::
RVCT_ARMV6
:
case
ProjectExplorer
::
ToolChain
::
RVCT_ARMV5_GNUPOC
:
case
ProjectExplorer
::
ToolChain
::
GCCE_GNUPOC
:
case
ProjectExplorer
::
ToolChain
::
GCC_MAEMO
:
return
GdbEngineType
;
case
ProjectExplorer
::
ToolChain
::
MSVC
:
...
...
src/plugins/debugger/qml/qmlcppengine.h
View file @
03492f24
...
...
@@ -13,7 +13,7 @@ namespace Internal {
class
GdbEngine
;
class
QmlEngine
;
class
QmlCppEngine
:
public
DebuggerEngine
class
DEBUGGER_EXPORT
QmlCppEngine
:
public
DebuggerEngine
{
Q_OBJECT
public:
...
...
@@ -67,6 +67,8 @@ public:
QAbstractItemModel
*
returnModel
()
const
;
QAbstractItemModel
*
sourceFilesModel
()
const
;
DebuggerEngine
*
cppEngine
()
const
{
return
m_cppEngine
;
}
protected:
virtual
void
detachDebugger
();
virtual
void
executeStep
();
...
...
src/plugins/debugger/qml/qmlengine.cpp
View file @
03492f24
...
...
@@ -162,7 +162,9 @@ void QmlEngine::connectionStartupFailed()
{
QMessageBox
::
critical
(
0
,
tr
(
"Failed to connect to debugger"
),
tr
(
"Could not connect to debugger server."
)
);
tr
(
"Could not connect to QML debugger server at %1:%2."
)
.
arg
(
startParameters
().
qmlServerAddress
)
.
arg
(
startParameters
().
qmlServerPort
));
notifyEngineRunFailed
();
}
...
...
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