aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/BWToolkitFramework.framework/BWTransparentTableViewIntegration.m
diff options
context:
space:
mode:
Diffstat (limited to 'Frameworks/BWToolkitFramework.framework/BWTransparentTableViewIntegration.m')
-rw-r--r--Frameworks/BWToolkitFramework.framework/BWTransparentTableViewIntegration.m32
1 files changed, 0 insertions, 32 deletions
diff --git a/Frameworks/BWToolkitFramework.framework/BWTransparentTableViewIntegration.m b/Frameworks/BWToolkitFramework.framework/BWTransparentTableViewIntegration.m
deleted file mode 100644
index 7dde9d28..00000000
--- a/Frameworks/BWToolkitFramework.framework/BWTransparentTableViewIntegration.m
+++ /dev/null
@@ -1,32 +0,0 @@
-//
-// BWTransparentTableViewIntegration.m
-// BWToolkit
-//
-// Created by Brandon Walkin (www.brandonwalkin.com)
-// All code is provided under the New BSD license.
-//
-
-#import <InterfaceBuilderKit/InterfaceBuilderKit.h>
-#import "BWTransparentTableView.h"
-
-@implementation BWTransparentTableView ( BWTransparentTableViewIntegration )
-
-- (void)addObject:(id)object toParent:(id)parent
-{
- IBDocument *document = [IBDocument documentForObject:parent];
-
- [document addObject:object toParent:parent];
-}
-
-- (void)removeObject:(id)object
-{
- IBDocument *document = [IBDocument documentForObject:object];
-
- [document removeObject:object];
-}
-
-- (void)ibTester
-{
-}
-
-@end