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
Marco Bubke
flatpak-qt-creator
Commits
f6ac7aab
Commit
f6ac7aab
authored
Jun 23, 2010
by
hjk
Browse files
debugger: attempt to fix maemo output connections
parent
e6590ff5
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/debuggerplugin.cpp
View file @
f6ac7aab
...
...
@@ -53,8 +53,8 @@
#include
"watchutils.h"
#include
"breakhandler.h"
#include
"stackhandler.h"
// FIXME
#include
"watchhandler.h"
// FIXME
#include
"stackhandler.h"
#include
"watchhandler.h"
#ifdef Q_OS_WIN
# include "shared/peutils.h"
...
...
src/plugins/qt4projectmanager/qt-maemo/maemoruncontrol.cpp
View file @
f6ac7aab
...
...
@@ -410,18 +410,19 @@ MaemoDebugRunControl::MaemoDebugRunControl(RunConfiguration *runConfiguration)
connect
(
m_debuggerRunControl
,
SIGNAL
(
debuggingFinished
()),
this
,
SLOT
(
debuggingFinished
()),
Qt
::
QueuedConnection
);
/*
FIXME:
connect(m_debuggerManager, SIGNAL(applicationOutputAvailable(QString, bool)),
this,
#ifdef USE_GDBSERVER
SLOT(debuggerOutput(QString))
connect
(
m_debuggerRunControl
,
SIGNAL
(
addToOutputWindowInline
(
RunControl
,
QString
,
bool
)),
this
,
SLOT
(
handleRemoteOutput
(
RunControl
,
QString
)),
Qt
::
QueuedConnection
);
#else
SLOT(handleRemoteOutput(QString))
connect
(
m_debuggerRunControl
,
SIGNAL
(
addToOutputWindowInline
(
RunControl
,
QString
,
bool
)),
this
,
SIGNAL
(
addToOutputWindowInline
(
RunControl
,
QString
,
bool
)),
Qt
::
QueuedConnection
);
#endif
, Qt::QueuedConnection);
*/
}
MaemoDebugRunControl
::~
MaemoDebugRunControl
()
...
...
@@ -489,7 +490,7 @@ void MaemoDebugRunControl::debuggingFinished()
#endif
}
void
MaemoDebugRunControl
::
debuggerOutput
(
const
QString
&
output
)
void
MaemoDebugRunControl
::
debuggerOutput
(
RunControl
*
,
const
QString
&
output
)
{
emit
appendMessage
(
this
,
QLatin1String
(
"[gdb says:] "
)
+
output
,
true
);
}
...
...
src/plugins/qt4projectmanager/qt-maemo/maemoruncontrol.h
View file @
f6ac7aab
...
...
@@ -156,7 +156,7 @@ public:
private
slots
:
virtual
void
handleRemoteOutput
(
const
QString
&
output
);
void
debuggerOutput
(
const
QString
&
output
);
void
debuggerOutput
(
RunControl
*
,
const
QString
&
output
);
void
debuggingFinished
();
private:
...
...
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