]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
Fix compilation problems on Win32 platform
authorabd <abd@opencascade.com>
Thu, 28 Aug 2008 09:53:51 +0000 (09:53 +0000)
committerabd <abd@opencascade.com>
Thu, 28 Aug 2008 09:53:51 +0000 (09:53 +0000)
src/GEOMImpl/GEOMImpl_IShapesOperations.cxx
src/GEOMToolsGUI/GEOMToolsGUI_DeleteDlg.cxx

index a3b7dde7c9d724247ae87b8b2cddfa7c35a1aff8..13b1a80a8cf5cedba7c524ccdcc4b9e8f2297077 100644 (file)
@@ -2912,7 +2912,7 @@ Handle(GEOM_Object) GEOMImpl_IShapesOperations::GetInPlace (Handle(GEOM_Object)
       aPnt = BRep_Tool::Pnt( TopoDS::Vertex( Exp_Vertex.Current() ) );
       tab_Pnt[nbVertex] = aPnt;
     }
-    if ( not tab_Pnt[0].IsEqual(tab_Pnt[1], dl_l) ) {
+    if ( ! tab_Pnt[0].IsEqual(tab_Pnt[1], dl_l) ) {
       BRepGProp::LinearProperties(Exp_Edge.Current(), aProps);
       if ( aProps.Mass() < min_l ) min_l = aProps.Mass();
     }
index 4cde20102489d1d677a33887248156293a42fc43..8b4899f993fcf1770bb8882fc66f0e0b077f0e72 100644 (file)
@@ -51,12 +51,12 @@ static QStringList objectsToNames( const QMap<QString, QString>& objects )
   QStringList entries;
   for ( QMap<QString, QString>::ConstIterator it = objects.begin(); it != objects.end(); ++it ) {
     QString entry = it.key();
-    QStringList::Iterator it;
+    QStringList::Iterator iter;
     bool added = false;
-    for ( it = entries.begin(); it != entries.end() && !added; ++it ) {
-      if ( isEntryLess( entry, *it ) ) {
-       entries.insert( it, entry );
-       added = true;
+    for ( iter = entries.begin(); iter != entries.end() && !added; ++it ) {
+      if ( isEntryLess( entry, *iter ) ) {
+        entries.insert( iter, entry );
+        added = true;
       }
     }
     if ( !added )