Salome HOME
Parameters annotation corrected.
[modules/hydro.git] / src / HYDROPy / HYDROData_SequenceOfObjects.sip
index be9b94cc356d14722af614fc388d238d9952470f..3af3646bd3eb3b265bb0234737ee6ed8f9510389 100644 (file)
@@ -38,7 +38,7 @@
         return NULL;
 
     // Set the list elements.
-    for (int i = 0; i < sipCpp->Length(); ++i)
+    for (int i = 1; i <= sipCpp->Length(); ++i)
     {
        HYDROData_Entity* aPntr = createPointer(sipCpp->Value(i));
      
@@ -54,7 +54,7 @@
             return NULL;
         }
 
-        PyList_SET_ITEM(l, i, tobj);
+        PyList_SET_ITEM(l, i - 1, tobj);
     }
 
     return l;
@@ -83,7 +83,7 @@
         return 1;
     }
 
-    NCollection_Sequence<Handle_HYDROData_Entity> *ql = 
+    NCollection_Sequence<Handle_HYDROData_Entity> *aSeq = 
       new NCollection_Sequence<Handle_HYDROData_Entity>;
     len = PySequence_Size(sipPy);
  
         {
             sipReleaseType(t, sipType_HYDROData_Entity, state);
 
-            delete ql;
+            delete aSeq;
             return 0;
         }
 
         Handle_HYDROData_Entity anEnt( t );
-        ql->Append( anEnt );
+        aSeq->Append( anEnt );
 
         //sipReleaseType(t, sipType_HYDROData_Entity, state);
     }
  
-    *sipCppPtr = ql;
+    *sipCppPtr = aSeq;
  
     return sipGetState(sipTransferObj);
 %End