aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/BWToolkitFramework.framework/BWTokenFieldCell.m
diff options
context:
space:
mode:
Diffstat (limited to 'Frameworks/BWToolkitFramework.framework/BWTokenFieldCell.m')
-rw-r--r--Frameworks/BWToolkitFramework.framework/BWTokenFieldCell.m27
1 files changed, 0 insertions, 27 deletions
diff --git a/Frameworks/BWToolkitFramework.framework/BWTokenFieldCell.m b/Frameworks/BWToolkitFramework.framework/BWTokenFieldCell.m
deleted file mode 100644
index 6f56cf5a..00000000
--- a/Frameworks/BWToolkitFramework.framework/BWTokenFieldCell.m
+++ /dev/null
@@ -1,27 +0,0 @@
-//
-// BWTokenFieldCell.m
-// BWToolkit
-//
-// Created by Brandon Walkin (www.brandonwalkin.com)
-// All code is provided under the New BSD license.
-//
-
-#import "BWTokenFieldCell.h"
-#import "BWTokenAttachmentCell.h"
-
-@implementation BWTokenFieldCell
-
-- (id)setUpTokenAttachmentCell:(NSTokenAttachmentCell *)aCell forRepresentedObject:(id)anObj
-{
- BWTokenAttachmentCell *attachmentCell = [[BWTokenAttachmentCell alloc] initTextCell:[aCell stringValue]];
-
- [attachmentCell setRepresentedObject:anObj];
- [attachmentCell setAttachment:[aCell attachment]];
- [attachmentCell setControlSize:[self controlSize]];
- [attachmentCell setTextColor:[NSColor blackColor]];
- [attachmentCell setFont:[self font]];
-
- return [attachmentCell autorelease];
-}
-
-@end