aboutsummaryrefslogtreecommitdiffstats
path: root/iphone/FixMyStreet/Classes
diff options
context:
space:
mode:
Diffstat (limited to 'iphone/FixMyStreet/Classes')
-rw-r--r--iphone/FixMyStreet/Classes/AboutViewController.h2
-rw-r--r--iphone/FixMyStreet/Classes/AboutViewController.m2
-rw-r--r--iphone/FixMyStreet/Classes/InputTableViewController.m6
3 files changed, 5 insertions, 5 deletions
diff --git a/iphone/FixMyStreet/Classes/AboutViewController.h b/iphone/FixMyStreet/Classes/AboutViewController.h
index 2f8045434..917b81f45 100644
--- a/iphone/FixMyStreet/Classes/AboutViewController.h
+++ b/iphone/FixMyStreet/Classes/AboutViewController.h
@@ -3,7 +3,7 @@
// FixMyStreet
//
// Created by Matthew on 23/10/2008.
-// Copyright 2008 __MyCompanyName__. All rights reserved.
+// Copyright 2008 UK Citizens Online Democracy. All rights reserved.
//
#import <UIKit/UIKit.h>
diff --git a/iphone/FixMyStreet/Classes/AboutViewController.m b/iphone/FixMyStreet/Classes/AboutViewController.m
index 98cdbc304..74ea3a422 100644
--- a/iphone/FixMyStreet/Classes/AboutViewController.m
+++ b/iphone/FixMyStreet/Classes/AboutViewController.m
@@ -3,7 +3,7 @@
// FixMyStreet
//
// Created by Matthew on 23/10/2008.
-// Copyright 2008 __MyCompanyName__. All rights reserved.
+// Copyright 2008 UK Citizens Online Democracy. All rights reserved.
//
#import "AboutViewController.h"
diff --git a/iphone/FixMyStreet/Classes/InputTableViewController.m b/iphone/FixMyStreet/Classes/InputTableViewController.m
index 8af16bac5..1f2769590 100644
--- a/iphone/FixMyStreet/Classes/InputTableViewController.m
+++ b/iphone/FixMyStreet/Classes/InputTableViewController.m
@@ -41,7 +41,6 @@
// Implement viewDidLoad to do additional setup after loading the view.
- (void)viewDidLoad {
[super viewDidLoad];
-// actionsToDoView.sectionFooterHeight = 0;
backButton = [[UIBarButtonItem alloc] initWithTitle:@"Cancel" style:UIBarButtonSystemItemCancel target:nil action:nil];
self.navigationItem.backBarButtonItem = backButton;
@@ -281,11 +280,12 @@
// Buttons
+// I realise this flips the navbar too, but can't seem to do it nicely with a container parent, and not really that important!
-(IBAction)gotoAbout:(id)sender {
backButton.title = @"Back";
AboutViewController* aboutViewController = [[AboutViewController alloc] initWithNibName:@"AboutView" bundle:nil];
[UIView beginAnimations:nil context:NULL];
- [UIView setAnimationDuration: 1];
+ [UIView setAnimationDuration: 0.75];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:self.navigationController.view cache:YES];
[self.navigationController pushViewController:aboutViewController animated:NO];
[UIView commitAnimations];
@@ -309,7 +309,7 @@
BOOL success = [delegate uploadReport];
if (success)
imageView.image = nil;
- [actionsToDoView reloadData];
+ [self enableSubmissionButton];
}
}