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
Tobias Hunger
qt-creator
Commits
c77172d9
Commit
c77172d9
authored
Jan 12, 2011
by
hjk
Browse files
debugger: qmlcppengine: the model multiplexing is done by the master now
parent
839c30f8
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/qml/qmlcppengine.cpp
View file @
c77172d9
...
...
@@ -257,46 +257,6 @@ void QmlCppEngine::assignValueInDebugger(const WatchData *data,
d
->
m_activeEngine
->
assignValueInDebugger
(
data
,
expr
,
value
);
}
QAbstractItemModel
*
QmlCppEngine
::
modulesModel
()
const
{
return
d
->
m_cppEngine
->
modulesModel
();
}
QAbstractItemModel
*
QmlCppEngine
::
registerModel
()
const
{
return
d
->
m_cppEngine
->
registerModel
();
}
QAbstractItemModel
*
QmlCppEngine
::
stackModel
()
const
{
return
d
->
m_activeEngine
->
stackModel
();
}
QAbstractItemModel
*
QmlCppEngine
::
threadsModel
()
const
{
return
d
->
m_cppEngine
->
threadsModel
();
}
QAbstractItemModel
*
QmlCppEngine
::
localsModel
()
const
{
return
d
->
m_activeEngine
->
localsModel
();
}
QAbstractItemModel
*
QmlCppEngine
::
watchersModel
()
const
{
return
d
->
m_activeEngine
->
watchersModel
();
}
QAbstractItemModel
*
QmlCppEngine
::
returnModel
()
const
{
return
d
->
m_cppEngine
->
returnModel
();
}
QAbstractItemModel
*
QmlCppEngine
::
sourceFilesModel
()
const
{
return
d
->
m_cppEngine
->
sourceFilesModel
();
}
void
QmlCppEngine
::
detachDebugger
()
{
d
->
m_qmlEngine
->
detachDebugger
();
...
...
src/plugins/debugger/qml/qmlcppengine.h
View file @
c77172d9
...
...
@@ -61,15 +61,6 @@ public:
virtual
void
assignValueInDebugger
(
const
WatchData
*
data
,
const
QString
&
expr
,
const
QVariant
&
value
);
QAbstractItemModel
*
modulesModel
()
const
;
QAbstractItemModel
*
registerModel
()
const
;
QAbstractItemModel
*
stackModel
()
const
;
QAbstractItemModel
*
threadsModel
()
const
;
QAbstractItemModel
*
localsModel
()
const
;
QAbstractItemModel
*
watchersModel
()
const
;
QAbstractItemModel
*
returnModel
()
const
;
QAbstractItemModel
*
sourceFilesModel
()
const
;
DebuggerEngine
*
cppEngine
()
const
;
virtual
void
handleRemoteSetupDone
(
int
gdbServerPort
,
int
qmlPort
);
virtual
void
handleRemoteSetupFailed
(
const
QString
&
message
);
...
...
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