Commit 1b9f9692 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

De-uglify root SD item name (part 2)

parent feeef1ef
...@@ -120,8 +120,8 @@ enum vlc_module_properties ...@@ -120,8 +120,8 @@ enum vlc_module_properties
/** /**
* Current plugin ABI version * Current plugin ABI version
*/ */
# define MODULE_SYMBOL 1_1_0f # define MODULE_SYMBOL 1_1_0g
# define MODULE_SUFFIX "__1_1_0f" # define MODULE_SUFFIX "__1_1_0g"
/***************************************************************************** /*****************************************************************************
* Add a few defines. You do not want to read this section. Really. * Add a few defines. You do not want to read this section. Really.
......
...@@ -161,7 +161,7 @@ void PLSelector::setSource( QTreeWidgetItem *item ) ...@@ -161,7 +161,7 @@ void PLSelector::setSource( QTreeWidgetItem *item )
bool sd_loaded; bool sd_loaded;
if( i_type == SD_TYPE ) if( i_type == SD_TYPE )
{ {
QString qs = item->data( 0, NAME_ROLE ).toString(); QString qs = item->data( 0, LONGNAME_ROLE ).toString();
sd_loaded = playlist_IsServicesDiscoveryLoaded( THEPL, qtu( qs ) ); sd_loaded = playlist_IsServicesDiscoveryLoaded( THEPL, qtu( qs ) );
if( !sd_loaded ) if( !sd_loaded )
playlist_ServicesDiscoveryAdd( THEPL, qtu( qs ) ); playlist_ServicesDiscoveryAdd( THEPL, qtu( qs ) );
......
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