1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-18 16:41:14 +02:00

Added TrackPanel2. Removed namespaces, as they don't help avoid collision with TrackPanel name.

This commit is contained in:
james.k.crook@gmail.com
2011-04-25 21:27:30 +00:00
parent 214b405646
commit fe4a271fa1
8 changed files with 163 additions and 29 deletions

View File

@@ -111,6 +111,7 @@ void ModTrackPanelCommandFunctor::operator()(int index )
void ModTrackPanelCallback::OnFuncShowAudioExplorer()
{
int k=3;
Registrar::ShowNewPanel();
}
void ModTrackPanelCallback::OnFuncShowAnotherExtension()
@@ -148,10 +149,10 @@ MOD_TRACK_PANEL_DLL_API int ModuleDispatch(ModuleDispatchTypes type)
switch (type)
{
case AppInitialized:
ModTrackPanel::Registrar::Start();
Registrar::Start();
break;
case AppQuiting:
ModTrackPanel::Registrar::Finish();
Registrar::Finish();
break;
case ProjectInitialized:
case MenusRebuilt: