1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-16 15:57:52 +01:00

More safenew

This commit is contained in:
Paul Licameli
2016-08-09 23:40:11 -04:00
parent c438925a22
commit 8572b425c1
7 changed files with 41 additions and 31 deletions

View File

@@ -142,7 +142,8 @@ void SplashDialog::Show2( wxWindow * pParent )
{
if( pSelf == NULL )
{
pSelf = new SplashDialog( pParent );
// pParent owns it
pSelf = safenew SplashDialog( pParent );
}
pSelf->mpHtml->SetPage(HelpText( wxT("welcome") ));
pSelf->Show( true );