Skip to content
Snippets Groups Projects
Commit 0346e614 authored by Christian Kandeler's avatar Christian Kandeler
Browse files

Maemo: Fix user-visible strings.

Capitalization + native separators.

Reviewed-by: kh1
parent a30c0161
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ ...@@ -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 @@ ...@@ -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>
......
...@@ -287,7 +287,8 @@ void MaemoRunConfigurationWidget::argumentsEdited(const QString &text) ...@@ -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()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment