Commit 914446b9 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4 - Try to fix some crash on Windows.

parent d2c9b209
...@@ -294,7 +294,7 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent, ...@@ -294,7 +294,7 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
/* Disk Devices */ /* Disk Devices */
{ {
ui.DVDDevice->setToolTip( ui.DVDDevice->setToolTip(
//BUG: make this sentence understandable //TODO: make this sentence understandable
qtr( "If this property is blank, then you have\n" qtr( "If this property is blank, then you have\n"
"values for DVD, VCD, and CDDA.\n" "values for DVD, VCD, and CDDA.\n"
"You can define a unique one or set that in" "You can define a unique one or set that in"
...@@ -302,8 +302,8 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent, ...@@ -302,8 +302,8 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
char *psz_dvddiscpath = config_GetPsz( p_intf, "dvd" ); char *psz_dvddiscpath = config_GetPsz( p_intf, "dvd" );
char *psz_vcddiscpath = config_GetPsz( p_intf, "vcd" ); char *psz_vcddiscpath = config_GetPsz( p_intf, "vcd" );
char *psz_cddadiscpath = config_GetPsz( p_intf, "cd-audio" ); char *psz_cddadiscpath = config_GetPsz( p_intf, "cd-audio" );
if( ( *psz_cddadiscpath == *psz_dvddiscpath ) if( !strcmp( psz_cddadiscpath, psz_dvddiscpath ) &&
&& ( *psz_dvddiscpath == *psz_vcddiscpath ) ) !strcmp( psz_dvddiscpath, psz_vcddiscpath ) )
{ {
ui.DVDDevice->setText( qfu( psz_dvddiscpath ) ); ui.DVDDevice->setText( qfu( psz_dvddiscpath ) );
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment