Not worrying about that stupid clicky URL text field for now.
[ITKit.git] / ITURLTextField.m
diff --git a/ITURLTextField.m b/ITURLTextField.m
deleted file mode 100644 (file)
index 03dcdaa..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-#import "ITURLTextField.h"
-
-@implementation ITURLTextField
-
-- (void)dealloc
-{
-       [_url release];
-       [super dealloc];
-}
-
-/*- (void)mouseEntered:(NSEvent *)event
-{
-       NSLog(@"grr");
-       [[NSCursor pointingHandCursor] set];
-       [super mouseEntered:event];
-}
-
-- (void)mouseExited:(NSEvent *)event
-{
-       [[NSCursor arrowCursor] set];
-       [super mouseExited:event];
-}*/
-
-- (void)setURL:(NSURL *)url
-{
-       [_url release];
-       _url = [url retain];
-       
-       //Make an attributed string for the main stringValue now
-//     NSAttributedString *string = [[NSAttributedString alloc] initWithString:[self stringValue] attributes:];
-}
-
-@end