Replace zero with nullptr

This commit is contained in:
Paul Cornett
2025-03-28 16:06:22 -07:00
parent cbb1bfe589
commit bfb6c452bd
13 changed files with 30 additions and 30 deletions
+1 -1
View File
@@ -729,6 +729,6 @@ wxThread::ExitCode ThreadWorker::Entry()
WorkerEvent e(this,etype);
if (failed) e.setFailed();
wxGetApp().AddPendingEvent(e);
return 0;
return nullptr;
}