Commit 2ad5d811 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: adapt to new SD search function

parent f18a9358
...@@ -37,6 +37,7 @@ ...@@ -37,6 +37,7 @@
#include "input_manager.hpp" #include "input_manager.hpp"
#include <vlc_intf_strings.h> #include <vlc_intf_strings.h>
#include <vlc_services_discovery.h>
#include <QPushButton> #include <QPushButton>
#include <QHeaderView> #include <QHeaderView>
...@@ -187,7 +188,7 @@ void StandardPLPanel::searchDelayed( const QString& searchText ) ...@@ -187,7 +188,7 @@ void StandardPLPanel::searchDelayed( const QString& searchText )
if( type == SD_TYPE ) if( type == SD_TYPE )
{ {
if( !name.isEmpty() && !searchText.isEmpty() ) if( !name.isEmpty() && !searchText.isEmpty() )
playlist_QueryServicesDiscovery( THEPL, qtu( name ), qtu( searchText ) ); playlist_ServicesDiscoveryControl( THEPL, qtu( name ), SD_CMD_SEARCH );
} }
} }
......
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