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>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>471</width>
|
||||
<width>505</width>
|
||||
<height>162</height>
|
||||
</rect>
|
||||
</property>
|
||||
@@ -193,7 +193,7 @@
|
||||
<item row="2" column="0">
|
||||
<widget class="QLabel" name="packageManagerIconLabel">
|
||||
<property name="text">
|
||||
<string><b>Package Manager Icon:</b></string>
|
||||
<string><b>Package Manager icon:</b></string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
||||
@@ -287,7 +287,8 @@ void MaemoRunConfigurationWidget::argumentsEdited(const QString &text)
|
||||
|
||||
void MaemoRunConfigurationWidget::updateTargetInformation()
|
||||
{
|
||||
m_localExecutableLabel->setText(m_runConfiguration->localExecutableFilePath());
|
||||
m_localExecutableLabel
|
||||
->setText(QDir::toNativeSeparators(m_runConfiguration->localExecutableFilePath()));
|
||||
}
|
||||
|
||||
void MaemoRunConfigurationWidget::handleDeploySpecsChanged()
|
||||
|
||||
Reference in New Issue
Block a user