diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-10-18 23:29:21 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-10-19 00:27:47 +0200 |
| commit | a25c933a560797627ac891d95fbd80b747835ac2 (patch) | |
| tree | 4c317daed9066c6f01e6917eacedf19b206da498 | |
| parent | e90ff462412902a1e06878a0f34dc2e0323e738c (diff) | |
Cleanup: 0 -> nullptr.
| -rw-r--r-- | src/tools/dcpomatic_kdm.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/dcpomatic_kdm.cc b/src/tools/dcpomatic_kdm.cc index f877ad21f..d60a5e190 100644 --- a/src/tools/dcpomatic_kdm.cc +++ b/src/tools/dcpomatic_kdm.cc @@ -280,8 +280,8 @@ private: ); } - /** @id if not 0 this is filled in with the wxTreeItemId of the selection */ - shared_ptr<DKDMBase> selected_dkdm (wxTreeItemId* id = 0) const + /** @id if not nullptr this is filled in with the wxTreeItemId of the selection */ + shared_ptr<DKDMBase> selected_dkdm (wxTreeItemId* id = nullptr) const { wxArrayTreeItemIds selections; _dkdm->GetSelections (selections); |
