1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-04-04 05:17:47 +02:00

Remove unused function and data member

This commit is contained in:
Paul Licameli
2020-02-19 15:50:35 -05:00
parent 6cd4fce29b
commit eb038972b0
2 changed files with 0 additions and 38 deletions

View File

@@ -69,7 +69,6 @@ using ModuleInterfaceHandle = std::unique_ptr<
ModuleInterface, ModuleInterfaceDeleter
>;
typedef std::map<wxString, ModuleMain *> ModuleMainMap;
typedef std::map<wxString, ModuleInterfaceHandle> ModuleMap;
typedef std::map<ModuleInterface *, std::unique_ptr<wxDynamicLibrary>> LibraryMap;
using PluginIDs = wxArrayString;
@@ -96,9 +95,6 @@ public:
// Can be called before Initialize()
bool DiscoverProviders();
// Seems we don't currently use FindAllPlugins
void FindAllPlugins(PluginIDs & providers, PluginPaths & paths);
PluginPaths FindPluginsForProvider(const PluginID & provider, const PluginPath & path);
bool RegisterEffectPlugin(const PluginID & provider, const PluginPath & path,
TranslatableString &errMsg);
@@ -123,8 +119,6 @@ private:
friend std::default_delete<ModuleManager>;
static std::unique_ptr<ModuleManager> mInstance;
ModuleMainMap mModuleMains;
// Module objects, also called Providers, can each report availability of any
// number of Plug-Ins identified by "paths", and are also factories of
// ComponentInterface objects for each path: