add allowsFiltering / allowsSearching checks
This commit is contained in:
@@ -424,6 +424,11 @@ void PlaylistEditor::MouseButtonPressed(MEVENT me)
|
||||
|
||||
/***********************************************************************/
|
||||
|
||||
bool PlaylistEditor::allowsFiltering()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
std::string PlaylistEditor::currentFilter()
|
||||
{
|
||||
std::string filter;
|
||||
@@ -452,6 +457,11 @@ void PlaylistEditor::applyFilter(const std::string &filter)
|
||||
|
||||
/***********************************************************************/
|
||||
|
||||
bool PlaylistEditor::allowsSearching()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
bool PlaylistEditor::search(const std::string &constraint)
|
||||
{
|
||||
bool result = false;
|
||||
|
||||
Reference in New Issue
Block a user