Skip to content

Commit

Permalink
fixed bug in bot button
Browse files Browse the repository at this point in the history
  • Loading branch information
David Scharf committed Oct 10, 2013
1 parent 1d02d71 commit 7329d2f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/BOTBlockButton/BOTBlockButton.m
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ - (id)init
return self;
}

-(id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
[self registerEvents];
return self;
}

- (void) registerEvents
{
[self addTarget:self
Expand Down
2 changes: 2 additions & 0 deletions src/Bunch-o-Tools.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
//
//

#import "BOTBlockButton.h"

//BOTAlertViews
#import "BOTIndeterminateAlertView.h"
#import "BOTBlockAlertView.h"
Expand Down

0 comments on commit 7329d2f

Please sign in to comment.