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
bda60114
Commit
bda60114
authored
Jan 10, 2011
by
hjk
Browse files
applicationlauncher: fix recently introduced signal passing problem
parent
d3c1dd6a
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/applicationlauncher_win.cpp
View file @
bda60114
...
...
@@ -51,7 +51,7 @@ ApplicationLauncher::ApplicationLauncher(QObject *parent)
:
QObject
(
parent
),
d
(
new
ApplicationLauncherPrivate
)
{
connect
(
&
d
->
m_consoleProcess
,
SIGNAL
(
processMessage
(
QString
,
bool
)),
this
,
S
IGNAL
(
appendProcessMessage
(
QString
,
bool
)));
this
,
S
LOT
(
appendProcessMessage
(
QString
,
bool
)));
connect
(
&
d
->
m_consoleProcess
,
SIGNAL
(
processStopped
()),
this
,
SLOT
(
processStopped
()));
...
...
src/plugins/projectexplorer/localapplicationruncontrol.cpp
View file @
bda60114
...
...
@@ -90,8 +90,8 @@ LocalApplicationRunControl::LocalApplicationRunControl(LocalApplicationRunConfig
m_runMode
=
static_cast
<
ApplicationLauncher
::
Mode
>
(
rc
->
runMode
());
m_commandLineArguments
=
rc
->
commandLineArguments
();
connect
(
&
m_applicationLauncher
,
SIGNAL
(
appendMessage
(
QString
,
Pro
cess
Explorer
::
OutputFormat
)),
this
,
SLOT
(
slotAppendMessage
(
QString
,
Pro
cess
Explorer
::
OutputFormat
)));
connect
(
&
m_applicationLauncher
,
SIGNAL
(
appendMessage
(
QString
,
Pro
ject
Explorer
::
OutputFormat
)),
this
,
SLOT
(
slotAppendMessage
(
QString
,
Pro
ject
Explorer
::
OutputFormat
)));
connect
(
&
m_applicationLauncher
,
SIGNAL
(
processExited
(
int
)),
this
,
SLOT
(
processExited
(
int
)));
connect
(
&
m_applicationLauncher
,
SIGNAL
(
bringToForegroundRequested
(
qint64
)),
...
...
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