From a00ffc80f2dfeb000d60feece61c96c445bab2b4 Mon Sep 17 00:00:00 2001 From: Maxime Graulich <maxime.graulich@gmail.com> Date: Wed, 26 Mar 2014 13:48:14 +0000 Subject: [PATCH] --- contrib/mobile/iOS/Onelab/ParametersViewController.mm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/mobile/iOS/Onelab/ParametersViewController.mm b/contrib/mobile/iOS/Onelab/ParametersViewController.mm index b03d090202..be441a9211 100644 --- a/contrib/mobile/iOS/Onelab/ParametersViewController.mm +++ b/contrib/mobile/iOS/Onelab/ParametersViewController.mm @@ -159,7 +159,7 @@ if(found) continue; // the parameter is in the tableView // The section have to be create NSMutableArray *newSection = [[NSMutableArray alloc] init]; - [self addSection:newSection withTitle:sectiontitle withParameterNumber:number[0]]; + [self addSection:newSection withTitle:sectiontitle withParameterNumber:number[i]]; } std::vector<onelab::string> string; @@ -191,7 +191,7 @@ if(found) continue; // the parameter is in the tableView // The section have to be create NSMutableArray *newSection = [[NSMutableArray alloc] init]; - [self addSection:newSection withTitle:sectiontitle withParameterString:string[0]]; + [self addSection:newSection withTitle:sectiontitle withParameterString:string[i]]; } // check for hidden/deleted parameters -- GitLab