From 97f137533c595bfbefeebdea3661ccdd63cbce15 Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Wed, 4 Jan 2017 14:36:25 +0000
Subject: [PATCH] pp

---
 contrib/mobile/Android/AndroidManifest.xml            | 4 ++--
 contrib/mobile/iOS/Onelab/Onelab-Info.plist           | 4 ++--
 contrib/mobile/iOS/Onelab/ParametersViewController.mm | 6 +++---
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/contrib/mobile/Android/AndroidManifest.xml b/contrib/mobile/Android/AndroidManifest.xml
index 82f5e4a950..6c6c058112 100644
--- a/contrib/mobile/Android/AndroidManifest.xml
+++ b/contrib/mobile/Android/AndroidManifest.xml
@@ -1,7 +1,7 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
           package="org.geuz.onelab"
-          android:versionName="1.5.2"
-          android:versionCode="28"
+          android:versionName="1.6.0"
+          android:versionCode="29"
           android:installLocation="auto" >
   
   <uses-sdk android:minSdkVersion="14"
diff --git a/contrib/mobile/iOS/Onelab/Onelab-Info.plist b/contrib/mobile/iOS/Onelab/Onelab-Info.plist
index 2897d61f8f..acdd4e90bc 100644
--- a/contrib/mobile/iOS/Onelab/Onelab-Info.plist
+++ b/contrib/mobile/iOS/Onelab/Onelab-Info.plist
@@ -35,11 +35,11 @@
     <key>CFBundlePackageType</key>
     <string>APPL</string>
     <key>CFBundleShortVersionString</key>
-    <string>1.5.2</string>
+    <string>1.6.0</string>
     <key>CFBundleSignature</key>
     <string>????</string>
     <key>CFBundleVersion</key>
-    <string>1.5.2.0</string>
+    <string>1.6.0.0</string>
     <key>LSRequiresIPhoneOS</key>
     <true/>
     <key>UIFileSharingEnabled</key>
diff --git a/contrib/mobile/iOS/Onelab/ParametersViewController.mm b/contrib/mobile/iOS/Onelab/ParametersViewController.mm
index 9a9d777c63..051f256f07 100644
--- a/contrib/mobile/iOS/Onelab/ParametersViewController.mm
+++ b/contrib/mobile/iOS/Onelab/ParametersViewController.mm
@@ -155,14 +155,14 @@
 {
   [_sections addObject:s];
   [_sectionstitle addObject:t];
-	[self addParameterNumber:p inSection:s];
+  [self addParameterNumber:p inSection:s];
 }
 
 - (void)addSection:(NSMutableArray*)s withTitle:(NSString*)t withParameterString:(onelab::string)p
 {
   [_sections addObject:s];
   [_sectionstitle addObject:t];
-	[self addParameterString:p inSection:s];
+  [self addParameterString:p inSection:s];
 }
 
 NSString *GetSectionTitle(NSString *name)
@@ -186,7 +186,7 @@ NSString *GetSectionTitle(NSString *name)
 
 NSInteger compareParameter(id p1, id p2, void *context)
 {
-	return [[p1 getName] compare:[p2 getName]];
+  return [[p1 getName] compare:[p2 getName]];
 }
 
 - (void)refreshTableView
-- 
GitLab