diff options
Diffstat (limited to 'Frameworks/BWToolkitFramework.framework/BWTransparentScrollView.m')
-rw-r--r-- | Frameworks/BWToolkitFramework.framework/BWTransparentScrollView.m | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/Frameworks/BWToolkitFramework.framework/BWTransparentScrollView.m b/Frameworks/BWToolkitFramework.framework/BWTransparentScrollView.m deleted file mode 100644 index 636e69aa..00000000 --- a/Frameworks/BWToolkitFramework.framework/BWTransparentScrollView.m +++ /dev/null @@ -1,29 +0,0 @@ -// -// BWTransparentScrollView.m -// BWToolkit -// -// Created by Brandon Walkin (www.brandonwalkin.com) -// All code is provided under the New BSD license. -// - -#import "BWTransparentScrollView.h" -#import "BWTransparentScroller.h" - -@implementation BWTransparentScrollView - -- (id)initWithCoder:(NSCoder *)decoder; -{ - if ((self = [super initWithCoder:decoder]) != nil) - { - if ([self respondsToSelector:@selector(ibTester)] == NO) - [self setDrawsBackground:NO]; - } - return self; -} - -+ (Class)_verticalScrollerClass -{ - return [BWTransparentScroller class]; -} - -@end |