diff --git a/modules/gui/macosx/misc.h b/modules/gui/macosx/misc.h
index 81bc2e42c49d2125fb85e53b0e40e0ba9793fde6..40ab72cf825081b0da8051772036881777000b47 100644
--- a/modules/gui/macosx/misc.h
+++ b/modules/gui/macosx/misc.h
@@ -49,16 +49,6 @@
 
 @end
 
-/*****************************************************************************
- * ProgressView
- *****************************************************************************/
-
-@interface VLCProgressView : NSView
-
-- (void)scrollWheel:(NSEvent *)o_event;
-
-@end
-
 /*****************************************************************************
  * VLCVolumeSliderCommon
  *****************************************************************************/
diff --git a/modules/gui/macosx/misc.m b/modules/gui/macosx/misc.m
index b2cde3d88a15fcf9dc4e3233cc134bb3337b26a7..6aeb398cdfc9e20be660b82007791bca636c349c 100644
--- a/modules/gui/macosx/misc.m
+++ b/modules/gui/macosx/misc.m
@@ -149,50 +149,6 @@
 @end
 
 
-/*****************************************************************************
- * ProgressView
- *****************************************************************************/
-
-@implementation VLCProgressView : NSView
-
-- (void)scrollWheel:(NSEvent *)o_event
-{
-    BOOL b_forward = NO;
-    CGFloat f_deltaY = [o_event deltaY];
-    CGFloat f_deltaX = [o_event deltaX];
-
-    if ([o_event isDirectionInvertedFromDevice])
-        f_deltaX = -f_deltaX; // optimisation, actually double invertion of f_deltaY here
-    else
-        f_deltaY = -f_deltaY;
-
-    // positive for left / down, negative otherwise
-    CGFloat f_delta = f_deltaX + f_deltaY;
-    CGFloat f_abs;
-    int i_vlckey;
-
-    if (f_delta > 0.0f)
-        f_abs = f_delta;
-    else {
-        b_forward = YES;
-        f_abs = -f_delta;
-    }
-
-    for (NSUInteger i = 0; i < (int)(f_abs/4.+1.) && f_abs > 0.05 ; i++) {
-        if (b_forward)
-            [[VLCCoreInteraction sharedInstance] forwardExtraShort];
-        else
-            [[VLCCoreInteraction sharedInstance] backwardExtraShort];
-    }
-}
-
-- (BOOL)acceptsFirstResponder
-{
-    return YES;
-}
-
-@end
-
 /*****************************************************************************
  * VLCVolumeSliderCommon
  *****************************************************************************/