remove stuff we won't need
[pcsx_rearmed.git] / macosx / plugins / DFSound / macsrc / NamedSlider.m
diff --git a/macosx/plugins/DFSound/macsrc/NamedSlider.m b/macosx/plugins/DFSound/macsrc/NamedSlider.m
deleted file mode 100644 (file)
index fd07780..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-#import "NamedSlider.h"
-
-@implementation NamedSlider
-
-- (void)dealloc
-{
-       [strings release];
-       [super dealloc];
-}
-
-- (void)setStrings:(NSArray *)theStrings
-{
-       [strings release];
-       strings = [theStrings retain];
-}
-
-- (NSString *)stringValue
-{
-       int index = [self intValue];
-       
-       if (index >= 0 && index < [strings count])
-               return [strings objectAtIndex:index];
-       
-       return @"(Unknown)";
-}
-
-- (void)setIntValue:(int)value
-{
-       [super setIntValue:value];
-       [self sendAction:[self action] to:[self target]];
-}
-
-@end