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
a7695496
Commit
a7695496
authored
Aug 05, 2010
by
ck
Browse files
Maemo: Move remote executable GUI update to its own slot.
parent
5cdbf62d
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qt-maemo/maemorunconfigurationwidget.cpp
View file @
a7695496
...
...
@@ -129,7 +129,7 @@ void MaemoRunConfigurationWidget::addGenericWidgets(QVBoxLayout *mainLayout)
connect
(
m_runConfiguration
,
SIGNAL
(
targetInformationChanged
()),
this
,
SLOT
(
updateTargetInformation
()));
connect
(
m_runConfiguration
->
deployStep
()
->
deployables
(),
SIGNAL
(
modelsCreated
()),
this
,
SLOT
(
updateTargetInformation
()));
SIGNAL
(
modelsCreated
()),
this
,
SLOT
(
handleDeploySpecsChanged
()));
handleCurrentDeviceConfigChanged
();
}
...
...
@@ -256,6 +256,10 @@ void MaemoRunConfigurationWidget::argumentsEdited(const QString &text)
void
MaemoRunConfigurationWidget
::
updateTargetInformation
()
{
m_localExecutableLabel
->
setText
(
m_runConfiguration
->
localExecutableFilePath
());
}
void
MaemoRunConfigurationWidget
::
handleDeploySpecsChanged
()
{
m_remoteExecutableLabel
->
setText
(
m_runConfiguration
->
remoteExecutableFilePath
());
}
...
...
src/plugins/qt4projectmanager/qt-maemo/maemorunconfigurationwidget.h
View file @
a7695496
...
...
@@ -88,6 +88,7 @@ private slots:
void
systemEnvironmentChanged
();
void
userEnvironmentChangesChanged
(
const
QList
<
ProjectExplorer
::
EnvironmentItem
>
&
userChanges
);
void
handleRemoteMountsChanged
();
void
handleDeploySpecsChanged
();
private:
void
addGenericWidgets
(
QVBoxLayout
*
mainLayout
);
...
...
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