aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/BWToolkitFramework.framework/BWStyledTextFieldIntegration.m
diff options
context:
space:
mode:
Diffstat (limited to 'Frameworks/BWToolkitFramework.framework/BWStyledTextFieldIntegration.m')
-rw-r--r--Frameworks/BWToolkitFramework.framework/BWStyledTextFieldIntegration.m29
1 files changed, 0 insertions, 29 deletions
diff --git a/Frameworks/BWToolkitFramework.framework/BWStyledTextFieldIntegration.m b/Frameworks/BWToolkitFramework.framework/BWStyledTextFieldIntegration.m
deleted file mode 100644
index 306fc3a6..00000000
--- a/Frameworks/BWToolkitFramework.framework/BWStyledTextFieldIntegration.m
+++ /dev/null
@@ -1,29 +0,0 @@
-//
-// BWStyledTextFieldIntegration.m
-// BWToolkit
-//
-// Created by Brandon Walkin (www.brandonwalkin.com)
-// All code is provided under the New BSD license.
-//
-
-#import <InterfaceBuilderKit/InterfaceBuilderKit.h>
-#import "BWStyledTextField.h"
-#import "BWStyledTextFieldInspector.h"
-
-@implementation BWStyledTextField (BWStyledTextFieldIntegration)
-
-- (void)ibPopulateKeyPaths:(NSMutableDictionary *)keyPaths
-{
- [super ibPopulateKeyPaths:keyPaths];
-
- [[keyPaths objectForKey:IBAttributeKeyPaths] addObjectsFromArray:[NSArray arrayWithObjects:@"shadowIsBelow", @"hasShadow", @"shadowColor", @"startingColor", @"endingColor", @"hasGradient", @"solidColor", nil]];
-}
-
-- (void)ibPopulateAttributeInspectorClasses:(NSMutableArray *)classes
-{
- [super ibPopulateAttributeInspectorClasses:classes];
-
- [classes addObject:[BWStyledTextFieldInspector class]];
-}
-
-@end