Module: wine Branch: master Commit: 51ed908467ecd8299333456ef8b2fcfb7a13ea56 URL: http://source.winehq.org/git/wine.git/?a=commit;h=51ed908467ecd8299333456ef8...
Author: Charles Davis cdavis5x@gmail.com Date: Thu Feb 18 13:22:34 2016 -0700
quartz: Remove unused variable (Clang).
Signed-off-by: Charles Davis cdavis5x@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/quartz/pin.c | 22 ---------------------- 1 file changed, 22 deletions(-)
diff --git a/dlls/quartz/pin.c b/dlls/quartz/pin.c index 0a2c507..7212807 100644 --- a/dlls/quartz/pin.c +++ b/dlls/quartz/pin.c @@ -844,25 +844,3 @@ HRESULT WINAPI PullPin_NewSegment(IPin * iface, REFERENCE_TIME tStart, REFERENCE
return SendFurther( iface, deliver_newsegment, &args, NULL ); } - -static const IPinVtbl PullPin_Vtbl = -{ - PullPin_QueryInterface, - BasePinImpl_AddRef, - PullPin_Release, - BaseInputPinImpl_Connect, - PullPin_ReceiveConnection, - PullPin_Disconnect, - BasePinImpl_ConnectedTo, - BasePinImpl_ConnectionMediaType, - BasePinImpl_QueryPinInfo, - BasePinImpl_QueryDirection, - BasePinImpl_QueryId, - PullPin_QueryAccept, - BasePinImpl_EnumMediaTypes, - BasePinImpl_QueryInternalConnections, - PullPin_EndOfStream, - PullPin_BeginFlush, - PullPin_EndFlush, - PullPin_NewSegment -};