forked from qt-creator/qt-creator
Maemo: Fix user-visible strings.
Capitalization + native separators. Reviewed-by: kh1
This commit is contained in:
@@ -6,7 +6,7 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>471</width>
|
<width>505</width>
|
||||||
<height>162</height>
|
<height>162</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
@@ -193,7 +193,7 @@
|
|||||||
<item row="2" column="0">
|
<item row="2" column="0">
|
||||||
<widget class="QLabel" name="packageManagerIconLabel">
|
<widget class="QLabel" name="packageManagerIconLabel">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string><b>Package Manager Icon:</b></string>
|
<string><b>Package Manager icon:</b></string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
|||||||
@@ -287,7 +287,8 @@ void MaemoRunConfigurationWidget::argumentsEdited(const QString &text)
|
|||||||
|
|
||||||
void MaemoRunConfigurationWidget::updateTargetInformation()
|
void MaemoRunConfigurationWidget::updateTargetInformation()
|
||||||
{
|
{
|
||||||
m_localExecutableLabel->setText(m_runConfiguration->localExecutableFilePath());
|
m_localExecutableLabel
|
||||||
|
->setText(QDir::toNativeSeparators(m_runConfiguration->localExecutableFilePath()));
|
||||||
}
|
}
|
||||||
|
|
||||||
void MaemoRunConfigurationWidget::handleDeploySpecsChanged()
|
void MaemoRunConfigurationWidget::handleDeploySpecsChanged()
|
||||||
|
|||||||
Reference in New Issue
Block a user