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
688f5d59
Commit
688f5d59
authored
Dec 06, 2010
by
hjk
Browse files
debugger: more interface cleanup
Looks like DebuggerPlugin::mainWindow() was used after all.
parent
3282c1af
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/debuggerplugin.cpp
View file @
688f5d59
...
...
@@ -3340,6 +3340,11 @@ bool DebuggerPlugin::isActiveDebugLanguage(int language)
return
theDebuggerCore
->
isActiveDebugLanguage
(
language
);
}
DebuggerMainWindow
*
DebuggerPlugin
::
mainWindow
()
{
return
theDebuggerCore
->
m_mainWindow
;
}
QWidget
*
DebugMode
::
widget
()
{
if
(
!
m_widget
)
{
...
...
src/plugins/debugger/debuggerplugin.h
View file @
688f5d59
...
...
@@ -43,6 +43,7 @@ class RunControl;
namespace
Debugger
{
class
DebuggerMainWindow
;
class
DebuggerRunControl
;
class
DebuggerStartParameters
;
...
...
@@ -59,11 +60,15 @@ public:
DebuggerPlugin
();
~
DebuggerPlugin
();
// Used by Maemo debugging support.
static
DebuggerRunControl
*
createDebugger
(
const
DebuggerStartParameters
&
sp
,
ProjectExplorer
::
RunConfiguration
*
rc
=
0
);
static
void
startDebugger
(
ProjectExplorer
::
RunControl
*
runControl
);
static
void
displayDebugger
(
ProjectExplorer
::
RunControl
*
runControl
);
// Used by QmlJSInspector.
static
bool
isActiveDebugLanguage
(
int
language
);
static
DebuggerMainWindow
*
mainWindow
();
private:
// IPlugin implementation.
...
...
src/plugins/qt4projectmanager/qt-maemo/maemodebugsupport.cpp
View file @
688f5d59
...
...
@@ -54,7 +54,6 @@
using
namespace
Core
;
using
namespace
Debugger
;
using
namespace
Debugger
::
Internal
;
using
namespace
ProjectExplorer
;
namespace
Qt4ProjectManager
{
...
...
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