Skip to content

Commit

Permalink
renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
oscardelben committed Mar 5, 2011
1 parent 3047d8c commit ab92392
Show file tree
Hide file tree
Showing 18 changed files with 2,129 additions and 248 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
build
.DS_Store
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@

#import <UIKit/UIKit.h>

@class NSDateCalculationsViewController;
@class DateCalculationsViewController;

@interface NSDateCalculationsAppDelegate : NSObject <UIApplicationDelegate> {
@interface DateCalculationsAppDelegate : NSObject <UIApplicationDelegate> {
UIWindow *window;
NSDateCalculationsViewController *viewController;
DateCalculationsViewController *viewController;
}

@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) IBOutlet NSDateCalculationsViewController *viewController;
@property (nonatomic, retain) IBOutlet DateCalculationsViewController *viewController;

@end

Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
// Copyright 2011 DibiStore. All rights reserved.
//

#import "NSDateCalculationsAppDelegate.h"
#import "NSDateCalculationsViewController.h"
#import "DateCalculationsAppDelegate.h"
#import "DateCalculationsViewController.h"

@implementation NSDateCalculationsAppDelegate
@implementation DateCalculationsAppDelegate

@synthesize window;
@synthesize viewController;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

#import <UIKit/UIKit.h>

@interface NSDateCalculationsViewController : UIViewController {
@interface DateCalculationsViewController : UIViewController {

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
// Copyright 2011 DibiStore. All rights reserved.
//

#import "NSDateCalculationsViewController.h"
#import "DateCalculationsViewController.h"

@implementation NSDateCalculationsViewController
@implementation DateCalculationsViewController



Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit ab92392

Please sign in to comment.