Yves лет назад: 14
Родитель
Сommit
81c5f16d47
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      Plugins/org.commontk.dicom.wg23.core/ctkDicomWG23TypesHelper.h

+ 1 - 1
Plugins/org.commontk.dicom.wg23.core/ctkDicomWG23TypesHelper.h

@@ -189,7 +189,7 @@ class ctkDicomSoapArrayOfString : public QtSoapArray{
 
     static QStringList* getArray(const QtSoapArray& array){
         QStringList * list = new QStringList();
-        for (int i; i < array.count() ; i++ ){
+        for (int i = 0; i < array.count() ; i++ ){
             const QString str = array.at(i).value().toString();
             list->append( str);
         }