aboutsummaryrefslogtreecommitdiffstats
path: root/iphone/FixMyStreet/Classes/InputTableViewController.h
diff options
context:
space:
mode:
authormatthew <matthew>2008-10-21 23:53:29 +0000
committermatthew <matthew>2008-10-21 23:53:29 +0000
commitc9f7ec5e74f4edc029108951bfdb396932260644 (patch)
treea32da516816c134d69d86eb7923c037d4d36d8b6 /iphone/FixMyStreet/Classes/InputTableViewController.h
parentef183ec3273b4eee487d3499d937753deabab280 (diff)
Add settings page for name/email, upload code.
Diffstat (limited to 'iphone/FixMyStreet/Classes/InputTableViewController.h')
-rw-r--r--iphone/FixMyStreet/Classes/InputTableViewController.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/iphone/FixMyStreet/Classes/InputTableViewController.h b/iphone/FixMyStreet/Classes/InputTableViewController.h
index 5ba0d1527..0947717de 100644
--- a/iphone/FixMyStreet/Classes/InputTableViewController.h
+++ b/iphone/FixMyStreet/Classes/InputTableViewController.h
@@ -7,7 +7,6 @@
//
#import <UIKit/UIKit.h>
-#import "imageCell.h"
#import "MyCLController.h"
@interface InputTableViewController : UIViewController <UINavigationControllerDelegate,UIImagePickerControllerDelegate,MyCLControllerDelegate> {
@@ -20,11 +19,12 @@
UITableViewCell* actionFetchLocationCell;
UITableViewCell* actionSummaryCell;
- UILabel* titleLabel;
- UILabel* titleLabelLabel;
+ UILabel* subjectLabel;
+ UILabel* subjectContent;
}
-(void)enableSubmissionButton;
+-(void)uploadReport;
-(IBAction)addPhoto:(id) sender;
-(IBAction)gotoSettings:(id)sender;
@@ -34,7 +34,7 @@
- (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker;
//MyCLControllerDelegate
--(void)newLocationUpdate:(NSString *)text;
+-(void)newLocationUpdate:(CLLocation *)location;
-(void)newError:(NSString *)text;
@end