removed PSLog to prevent conflicts with other SDKs

This commit is contained in:
Stefan Haubold 2012-02-22 17:30:01 +01:00
parent ac8b32d239
commit bf1a2b5655

View File

@ -27,12 +27,6 @@
#import "PSStoreButton.h"
#ifdef DEBUG
#define PSLog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
#else
#define PSLog(...)
#endif
#define PS_RGBCOLOR(r,g,b) [UIColor colorWithRed:(r)/255.0 green:(g)/255.0 blue:(b)/255.0 alpha:1]
#define PS_MIN_HEIGHT 25.0f
#define PS_MAX_WIDTH 120.0f
@ -87,12 +81,7 @@
#pragma mark -
#pragma mark private
- (void)touchedUpOutside:(id)sender {
PSLog(@"touched outside...");
}
- (void)buttonPressed:(id)sender {
PSLog(@"calling delegate:storeButtonFired for %@", sender);
[buttonDelegate_ storeButtonFired:self];
}