diff --git a/Polyhedron/demo/Polyhedron/Polyhedron_demo_surface_reconstruction_plugin.cpp b/Polyhedron/demo/Polyhedron/Polyhedron_demo_surface_reconstruction_plugin.cpp index 08237ea7536..974a3cef625 100644 --- a/Polyhedron/demo/Polyhedron/Polyhedron_demo_surface_reconstruction_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Polyhedron_demo_surface_reconstruction_plugin.cpp @@ -446,13 +446,13 @@ class Polyhedron_demo_surface_reconstruction_plugin : Q_PLUGIN_METADATA(IID "com.geometryfactory.PolyhedronDemo.PluginInterface/1.0") Q_INTERFACES(CGAL::Three::Polyhedron_demo_plugin_interface) - QAction* actionScaleSpaceReconstruction; + QAction* actionSurfaceReconstruction; public: void init(QMainWindow* mainWindow, CGAL::Three::Scene_interface* scene_interface) { - actionScaleSpaceReconstruction = new QAction(tr("Surface surface reconstruction"), mainWindow); - actionScaleSpaceReconstruction->setObjectName("actionSurfaceReconstruction"); + actionSurfaceReconstruction = new QAction(tr("Surface reconstruction"), mainWindow); + actionSurfaceReconstruction->setObjectName("actionSurfaceReconstruction"); CGAL::Three::Polyhedron_demo_plugin_helper::init(mainWindow, scene_interface); } @@ -468,7 +468,7 @@ public: } QList actions() const { - return QList() << actionScaleSpaceReconstruction; + return QList() << actionSurfaceReconstruction; } public Q_SLOTS: