Vasilis

declaration of method openCoupons changes

......@@ -15,7 +15,7 @@
- (void) setToStage;
- (void) setLang:(NSString*) lang;
- (UIViewController *) openProfile:(UIViewController*)controller :(UIWindow*) window;
- (UIViewController *) openCoupons;
- (UIView *) openCoupons;
- (void) applicationDidEnterBackground:(UIApplication *)application;
- (void) applicationWillEnterForeground:(UIApplication *)application;
- (void) applicationDidBecomeActive:(UIApplication *)application;
......
......@@ -55,7 +55,7 @@ NSString *LANG;
}
- (UIViewController *) openCoupons {
- (UIView *) openCoupons {
UIView *myCoupons = [[[NSBundle mainBundle] loadNibNamed:@"Coupons" owner:self options:nil] objectAtIndex:0];
return myCoupons;
}
......