Stop using "NULL" in the minimal sample

This should have been part of 4f4c5fcfdf (Use nullptr instead of NULL in
the code and documentation, 2022-10-16).
This commit is contained in:
Vadim Zeitlin 2023-04-17 18:36:33 +02:00
parent a0ea27cccf
commit 9935a29c7f

View file

@ -139,7 +139,7 @@ bool MyApp::OnInit()
// frame constructor
MyFrame::MyFrame(const wxString& title)
: wxFrame(NULL, wxID_ANY, title)
: wxFrame(nullptr, wxID_ANY, title)
{
// set the frame icon
SetIcon(wxICON(sample));