Remove unused class declaration, make pluginBefore a static function
This commit is contained in:
@@ -32,9 +32,6 @@
|
||||
#include "Plugin.h"
|
||||
|
||||
|
||||
class trackContainer;
|
||||
|
||||
|
||||
class PluginBrowser : public SideBarWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
#include "PluginFactory.h"
|
||||
|
||||
|
||||
bool pluginBefore( const Plugin::Descriptor* d1, const Plugin::Descriptor* d2 )
|
||||
static bool pluginBefore( const Plugin::Descriptor* d1, const Plugin::Descriptor* d2 )
|
||||
{
|
||||
return qstricmp( d1->displayName, d2->displayName ) < 0 ? true : false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user