Vasilis

declaration of method openCoupons changes

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