blob: 5cc882a58ec605d33d6be1aa0060ea6c6a71c656 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
--- kplayer/kplayersettingsdialog.cpp.orig Sat Oct 16 02:16:39 2004
+++ kplayer/kplayersettingsdialog.cpp Sat Oct 16 02:17:35 2004
@@ -271,7 +271,7 @@
config -> deleteEntry ("Settings Dialog Page");
else
config -> writeEntry ("Settings Dialog Page", name);
- setHelp (name.isEmpty() ? "settings" : "settings-" + name);
+ setHelp (name.isEmpty() ? QString::fromLatin1("settings") : "settings-" + name);
}
void KPlayerSettingsDialog::slotOk (void)
@@ -435,7 +435,7 @@
KPlayerSettings* settings = kPlayerSettings();
c_driver_fallback -> setChecked (index > 0 && settings -> audioDriverFallbackDefault());
c_driver_fallback -> setEnabled (index > 0);
- c_device -> setText (index > 0 ? settings -> audioDeviceDefault() : "");
+ c_device -> setText (index > 0 ? settings -> audioDeviceDefault() : QString::fromLatin1(""));
c_device -> setEnabled (index > 0);
}
@@ -792,7 +792,7 @@
KPlayerSettings* settings = kPlayerSettings();
c_driver_fallback -> setChecked (index > 0 && settings -> videoDriverFallbackDefault());
c_driver_fallback -> setEnabled (index > 0);
- c_device -> setText (index > 0 ? settings -> videoDeviceDefault() : "");
+ c_device -> setText (index > 0 ? settings -> videoDeviceDefault() : QString::fromLatin1(""));
c_device -> setEnabled (index > 0);
}
|