summaryrefslogtreecommitdiff
path: root/tools/flicker_test/main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tools/flicker_test/main.cc')
-rw-r--r--tools/flicker_test/main.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/flicker_test/main.cc b/tools/flicker_test/main.cc
index 67985a9..9617765 100644
--- a/tools/flicker_test/main.cc
+++ b/tools/flicker_test/main.cc
@@ -11,12 +11,13 @@
int main(int argc, char** argv) {
QApplication application(argc, argv);
- jxl::FlickerTestWizard wizard;
+ jpegxl::tools::FlickerTestWizard wizard;
if (wizard.exec()) {
- jxl::FlickerTestWindow test_window(wizard.parameters());
+ jpegxl::tools::FlickerTestWindow test_window(wizard.parameters());
if (test_window.proceedWithTest()) {
test_window.showMaximized();
return application.exec();
}
}
+ return 0;
}