Disabling some experimental options for a dm2 release.

This commit is contained in:
Daniel Önnerby 2008-11-13 19:43:52 +00:00
parent 5aa1a94570
commit 537e8f048c
2 changed files with 4 additions and 4 deletions

View File

@ -72,11 +72,11 @@ void MainMenuController::OnMainWindowCreated(Window* window)
void MainMenuController::ConnectMenuHandlers()
{
this->fileExit->Activated.connect(this, &MainMenuController::OnFileExit);
this->filePreferences->Activated.connect(this, &MainMenuController::OnFilePreferences);
// this->filePreferences->Activated.connect(this, &MainMenuController::OnFilePreferences);
this->helpAbout->Activated.connect(this, &MainMenuController::OnHelpAbout);
this->fileAddLibraryLocal->Activated.connect(this,&MainMenuController::OnAddLibraryLocal);
this->fileAddLibraryRemote->Activated.connect(this,&MainMenuController::OnAddLibraryRemote);
this->fileNewPlaylist->Activated.connect(this,&MainMenuController::OnNewPlaylist);
// this->fileNewPlaylist->Activated.connect(this,&MainMenuController::OnNewPlaylist);
}
void MainMenuController::OnFileExit(MenuItemRef menuItem)

View File

@ -174,7 +174,7 @@ void SettingsView::OnCreated()
mainLayout->AddChild(new Frame(pathLayout,FramePadding(20,20,0,20)));
// test CheckBox
CheckBox* c = new CheckBox(_T("Test 1"));
/* CheckBox* c = new CheckBox(_T("Test 1"));
mainLayout->AddChild(c);
c->Check();
c->Pressed.connect(this, &SettingsView::OnPressTestCheckbox);
@ -233,7 +233,7 @@ void SettingsView::OnCreated()
mainLayout->AddChild(cb);
cb->SetModel(cb_testmodel);
cb->Select(2);
*/
this->AddChild(mainLayout);
}