Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 0 additions & 20 deletions src/KTPhotoBrowser/KTPhotoBrowserGlobal.h

This file was deleted.

26 changes: 0 additions & 26 deletions src/KTPhotoBrowser/KTPhotoBrowserGlobal.m

This file was deleted.

5 changes: 2 additions & 3 deletions src/KTPhotoBrowser/KTPhotoScrollViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

#import "KTPhotoScrollViewController.h"
#import "KTPhotoBrowserDataSource.h"
#import "KTPhotoBrowserGlobal.h"
#import "KTPhotoView.h"

const CGFloat ktkDefaultPortraitToolbarHeight = 44;
Expand Down Expand Up @@ -98,13 +97,13 @@ - (void)loadView
[newView release];

nextButton_ = [[UIBarButtonItem alloc]
initWithImage:KTLoadImageFromBundle(@"nextIcon.png")
initWithImage:[UIImage imageNamed:@"KTPhotoBrowser.bundle/images/nextIcon.png"]
style:UIBarButtonItemStylePlain
target:self
action:@selector(nextPhoto)];

previousButton_ = [[UIBarButtonItem alloc]
initWithImage:KTLoadImageFromBundle(@"previousIcon.png")
initWithImage:[UIImage imageNamed:@"KTPhotoBrowser.bundle/images/previousIcon.png"]
style:UIBarButtonItemStylePlain
target:self
action:@selector(previousPhoto)];
Expand Down