diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-04-09 22:11:56 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-04-16 00:39:05 +0200 |
| commit | 91b6f5b7921c7af26c0bb04074d603a712f0e9d4 (patch) | |
| tree | 2de6bc426141d7fb321391e0ef4ce4a616572330 /src/wx/verify_dcp_result_dialog.cc | |
| parent | b3a03888285d1f97253a6ed7e1438d5a2781fab9 (diff) | |
Split VerifyDCPResultPanel so that construction and fill are separate.
Diffstat (limited to 'src/wx/verify_dcp_result_dialog.cc')
| -rw-r--r-- | src/wx/verify_dcp_result_dialog.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wx/verify_dcp_result_dialog.cc b/src/wx/verify_dcp_result_dialog.cc index 8f834ff58..9617878c5 100644 --- a/src/wx/verify_dcp_result_dialog.cc +++ b/src/wx/verify_dcp_result_dialog.cc @@ -32,7 +32,8 @@ VerifyDCPResultDialog::VerifyDCPResultDialog(wxWindow* parent, shared_ptr<Verify { auto sizer = new wxBoxSizer (wxVERTICAL); - auto panel = new VerifyDCPResultPanel(this, job); + auto panel = new VerifyDCPResultPanel(this); + panel->fill(job); sizer->Add(panel, 1, wxEXPAND); auto buttons = CreateStdDialogButtonSizer(0); |
