summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-02-22 01:53:39 +0100
committerCarl Hetherington <cth@carlh.net>2025-02-23 01:47:38 +0100
commit91c171b65e7329b90ac77442fd35b165bde70b26 (patch)
treec7dac9f4a660bce834db2810710a8e74fc4513f8 /src/tools
parent0690032e5c176bb6a9db41c76a167fa4fbd4cb8d (diff)
Rename VerifyDCPProgressDialog -> VerifyDCPDialog.
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/dcpomatic_player.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/dcpomatic_player.cc b/src/tools/dcpomatic_player.cc
index dc570653f..b0a791633 100644
--- a/src/tools/dcpomatic_player.cc
+++ b/src/tools/dcpomatic_player.cc
@@ -32,7 +32,7 @@
#include "wx/system_information_dialog.h"
#include "wx/timer_display.h"
#include "wx/update_dialog.h"
-#include "wx/verify_dcp_progress_dialog.h"
+#include "wx/verify_dcp_dialog.h"
#include "wx/wx_signal_manager.h"
#include "wx/wx_util.h"
#include "wx/wx_variant.h"
@@ -995,8 +995,8 @@ private:
DCPOMATIC_ASSERT (dcp);
auto job = make_shared<VerifyDCPJob>(dcp->directories(), _kdms, dcp::VerificationOptions{});
- VerifyDCPProgressDialog progress(this, _("Verify DCP"), job);
- progress.ShowModal();
+ VerifyDCPDialog dialog(this, _("Verify DCP"), job);
+ dialog.ShowModal();
}
void tools_check_for_updates ()