summaryrefslogtreecommitdiff
path: root/src/wx/verify_dcp_result_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-04-09 22:11:56 +0200
committerCarl Hetherington <cth@carlh.net>2024-04-16 00:39:05 +0200
commit91b6f5b7921c7af26c0bb04074d603a712f0e9d4 (patch)
tree2de6bc426141d7fb321391e0ef4ce4a616572330 /src/wx/verify_dcp_result_dialog.cc
parentb3a03888285d1f97253a6ed7e1438d5a2781fab9 (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.cc3
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);