From a01ee0c2a5ad9bec176dbc22dda02d4c1516c193 Mon Sep 17 00:00:00 2001 From: Simon Giraudot Date: Fri, 9 Mar 2018 13:14:01 +0100 Subject: [PATCH] Use Qt progress bar in shape detection plugin --- .../Plugins/Point_set/Point_set_shape_detection_plugin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Polyhedron/demo/Polyhedron/Plugins/Point_set/Point_set_shape_detection_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Point_set/Point_set_shape_detection_plugin.cpp index 5d07fe14d1b..a3833b8c7bf 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Point_set/Point_set_shape_detection_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Point_set/Point_set_shape_detection_plugin.cpp @@ -28,7 +28,7 @@ #include -#include "Progress_bar_callback.h" +#include "Qt_progress_bar_callback.h" #include #include @@ -255,7 +255,7 @@ private: // The actual shape detection. CGAL::Real_timer t; t.start(); - Progress_bar_callback callback; + Qt_progress_bar_callback callback ("Detecting shapes...", mw); shape_detection.detect(op, callback); t.stop();