Skip to content

Commit

Permalink
Remove accidentally committed debug code & resolve TODOs
Browse files Browse the repository at this point in the history
Closes #212
  • Loading branch information
timschneeb committed Sep 25, 2024
1 parent 7eb3186 commit 7cc4cbc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/MainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@ MainWindow::MainWindow(IAudioService* audioService,
_startupInTraySwitch = statupInTray;

_styleHelper = new StyleHelper(this);
// TODO _eelEditor = new EELEditor(this);
_eelEditor = new EELEditor(this);
_trayIcon = new TrayIcon(this);
_autostart = new AutostartManager(this);

// TODO _appMgrFragment = new FragmentHost<AppManagerFragment*>(new AppManagerFragment(_audioService->appManager(), this), WAF::BottomSide, this);
// TODO _statusFragment = new FragmentHost<StatusFragment*>(new StatusFragment(this), WAF::BottomSide, this);
// TODO _presetFragment = new FragmentHost<PresetFragment*>(new PresetFragment(_audioService, this), WAF::LeftSide, this);
// TODO _settingsFragment = new FragmentHost<SettingsFragment*>(new SettingsFragment(_trayIcon, _audioService, _autostart, this), WAF::BottomSide, this);
_appMgrFragment = new FragmentHost<AppManagerFragment*>(new AppManagerFragment(_audioService->appManager(), this), WAF::BottomSide, this);
_statusFragment = new FragmentHost<StatusFragment*>(new StatusFragment(this), WAF::BottomSide, this);
_presetFragment = new FragmentHost<PresetFragment*>(new PresetFragment(_audioService, this), WAF::LeftSide, this);
_settingsFragment = new FragmentHost<SettingsFragment*>(new SettingsFragment(_trayIcon, _audioService, _autostart, this), WAF::BottomSide, this);
}

// Prepare base UI
Expand Down

0 comments on commit 7cc4cbc

Please sign in to comment.