diff Question.m @ 27:ae4d2c3ce5e0

Details. Zoom trailing finger move sorted. Qs rephrased.
author Robert Tubb <rt300@eecs.qmul.ac.uk>
date Wed, 13 Feb 2013 17:03:56 +0000
parents a4908ad8c78e
children fabb3a5cdfc9
line wrap: on
line diff
--- a/Question.m	Fri Feb 01 18:31:43 2013 +0000
+++ b/Question.m	Wed Feb 13 17:03:56 2013 +0000
@@ -42,17 +42,17 @@
 // get the set of answers depending on what type the q was
     // pseudo static variable
     if(type == AGREE_DISAGREE){
-        [Question setCount:6];
+        [Question setCount:NUM_CHOICES];
         return [[NSArray alloc] initWithObjects:
-                    @" ", @"Strongly disagree", @"Disagree", @"Neither",
-                    @"Agree", @"Strongly agree", nil];
+                     @"Strongly agree",@"Agree", @"Neither agree nor disagree",
+                     @"Disagree",@"Strongly disagree", nil];
         
         
     }else if(type == SLIDERS_ZOOMER){
-        [Question setCount:6];
+        [Question setCount:NUM_CHOICES];
         return [[NSArray alloc] initWithObjects:
-                @" ", @"Definitely Sliders", @"Maybe Sliders", @"Neither",
-                @"Maybe Zoomer", @"Definitely Zoomer", nil];
+                 @"definitely the Sliders", @"maybe the Sliders", @"neither",
+                @"maybe the Zoomer", @"definitely the Zoomer", nil];
     }else{
         return nil;
     }