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:
parent
a0ea27cccf
commit
9935a29c7f
1 changed files with 1 additions and 1 deletions
|
|
@ -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));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue