mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
More zero -> nullptr fixes
This commit is contained in:
parent
132017558f
commit
359132ed55
15 changed files with 28 additions and 21 deletions
|
|
@ -235,7 +235,8 @@ private:
|
|||
{
|
||||
AlertWindow::showOkCancelBox (AlertWindow::QuestionIcon, "This is an ok/cancel AlertWindow",
|
||||
"And this is the AlertWindow's message. Blah blah blah blah blah blah blah blah blah blah blah blah blah.",
|
||||
{}, {}, 0, ModalCallbackFunction::forComponent (alertBoxResultChosen, this));
|
||||
{}, {}, {},
|
||||
ModalCallbackFunction::forComponent (alertBoxResultChosen, this));
|
||||
}
|
||||
else if (type == calloutBoxWindow)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue