1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-18 00:54:19 +00:00

Deprecated some old bool notification mode parameters, and replaced them with NotificationType values in the ComboBox and Button classes.

This commit is contained in:
jules 2013-07-08 13:05:51 +01:00
parent 51b9d1ed98
commit eb646f8c42
24 changed files with 119 additions and 95 deletions

View file

@ -42,7 +42,7 @@ struct NewProjectWizardClasses
setupComp.addChildAndSetID (c, "filesToCreate");
c->addItemList (fileOptions, 1);
c->setSelectedId (1, false);
c->setSelectedId (1, dontSendNotification);
Label* l = new Label (String::empty, TRANS("Files to Auto-Generate") + ":");
l->attachToComponent (c, true);
@ -482,7 +482,7 @@ struct NewProjectWizardClasses
addChildAndSetID (&projectType, "projectType");
projectType.addItemList (getWizardNames(), 1);
projectType.setSelectedId (1, true);
projectType.setSelectedId (1, dontSendNotification);
projectType.setBounds ("100, projectName.bottom + 4, projectName.right, top + 22");
typeLabel.attachToComponent (&projectType, true);
projectType.addListener (this);