]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
PAL11563: Naming Policy. Suppress blank group names.
authorjfa <jfa@opencascade.com>
Mon, 20 Feb 2006 12:11:49 +0000 (12:11 +0000)
committerjfa <jfa@opencascade.com>
Mon, 20 Feb 2006 12:11:49 +0000 (12:11 +0000)
src/GroupGUI/GroupGUI_GroupDlg.cxx

index 7dfa08243d2a5149026ac9f69054c7731f485dd6..84f5db2209b3de82879a93202819439b6c0fdc37 100644 (file)
@@ -661,8 +661,8 @@ bool GroupGUI_GroupDlg::isValid( QString& theMessage )
     RETURN_WITH_MSG( !CORBA::is_nil( myMainObj ), tr( "NO_GROUP" ) )
   }
 
-  const char* aName = getNewObjectName();
-  RETURN_WITH_MSG  ( aName && strlen( aName ), tr( "EMPTY_NAME" ) )
+  QString aName (getNewObjectName());
+  RETURN_WITH_MSG  ( !aName.stripWhiteSpace().isEmpty(), tr( "EMPTY_NAME" ) )
 
   RETURN_WITH_MSG  ( myIdList->count(), tr( "EMPTY_LIST" ) )
   return true;