From 497b76f92f7c1f79fd4788f08214e3d0864f74f6 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Fri, 29 Jan 2010 11:10:38 +0000 Subject: [PATCH] Add a missing break; --- Polyhedron/demo/Polyhedron/Polyhedron_demo_nef_plugin.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Polyhedron/demo/Polyhedron/Polyhedron_demo_nef_plugin.cpp b/Polyhedron/demo/Polyhedron/Polyhedron_demo_nef_plugin.cpp index a91da3e341b..147f636eec8 100644 --- a/Polyhedron/demo/Polyhedron/Polyhedron_demo_nef_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Polyhedron_demo_nef_plugin.cpp @@ -211,8 +211,9 @@ void Polyhedron_demo_nef_plugin::boolean_operation(const Boolean_operation opera break; case BOOLEAN_DIFFERENCE: name = tr("%1 minus %2"); + break; case MINKOWSKI_SUM: - name = tr("sum of %1 and %2"); + name = tr("Minkowski sum of %1 and %2"); } new_item->setName(name.arg(itemA->name(), itemB->name()));