mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-02 00:49:33 +02:00
Remove argument of ModuleManager::Initialize() unused since a6d0b3f
This commit is contained in:
parent
e1391b9884
commit
e52115630a
@ -1334,7 +1334,7 @@ bool AudacityApp::InitPart2()
|
|||||||
PluginManager::Get().Initialize();
|
PluginManager::Get().Initialize();
|
||||||
|
|
||||||
// Initialize the ModuleManager, including loading found modules
|
// Initialize the ModuleManager, including loading found modules
|
||||||
ModuleManager::Get().Initialize(*mCmdHandler);
|
ModuleManager::Get().Initialize();
|
||||||
|
|
||||||
// Parse command line and handle options that might require
|
// Parse command line and handle options that might require
|
||||||
// immediate exit...no need to initialize all of the audio
|
// immediate exit...no need to initialize all of the audio
|
||||||
|
@ -232,7 +232,7 @@ ModuleManager::~ModuleManager()
|
|||||||
}
|
}
|
||||||
|
|
||||||
// static
|
// static
|
||||||
void ModuleManager::Initialize(CommandHandler &cmdHandler)
|
void ModuleManager::Initialize()
|
||||||
{
|
{
|
||||||
const auto &audacityPathList = FileNames::AudacityPathList();
|
const auto &audacityPathList = FileNames::AudacityPathList();
|
||||||
FilePaths pathList;
|
FilePaths pathList;
|
||||||
|
@ -20,7 +20,6 @@
|
|||||||
|
|
||||||
class wxArrayString;
|
class wxArrayString;
|
||||||
class wxDynamicLibrary;
|
class wxDynamicLibrary;
|
||||||
class CommandHandler;
|
|
||||||
class ComponentInterface;
|
class ComponentInterface;
|
||||||
class ModuleInterface;
|
class ModuleInterface;
|
||||||
|
|
||||||
@ -85,7 +84,7 @@ public:
|
|||||||
|
|
||||||
static ModuleManager & Get();
|
static ModuleManager & Get();
|
||||||
|
|
||||||
void Initialize(CommandHandler & cmdHandler);
|
void Initialize();
|
||||||
int Dispatch(ModuleDispatchTypes type);
|
int Dispatch(ModuleDispatchTypes type);
|
||||||
|
|
||||||
// PluginManager use
|
// PluginManager use
|
||||||
|
Loading…
x
Reference in New Issue
Block a user