Maemo: Fix user-visible strings.

Capitalization + native separators.

Reviewed-by: kh1
This commit is contained in:
Christian Kandeler
2010-10-14 15:27:46 +02:00
parent a30c016189
commit 0346e61489
2 changed files with 4 additions and 3 deletions

View File

@@ -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>&lt;b&gt;Package Manager Icon:&lt;/b&gt;</string> <string>&lt;b&gt;Package Manager icon:&lt;/b&gt;</string>
</property> </property>
</widget> </widget>
</item> </item>

View File

@@ -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()