Michael Stefaniuc : dmime: Don' t use an IDirectMusicSegment8 method implementation directly.

Alexandre Julliard julliard at winehq.org
Tue Jan 7 13:21:17 CST 2014


Module: wine
Branch: master
Commit: 770feca7ac05a1189dfdeb64b702790d18a5076e
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=770feca7ac05a1189dfdeb64b702790d18a5076e

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Tue Jan  7 10:33:21 2014 +0100

dmime: Don't use an IDirectMusicSegment8 method implementation directly.

---

 dlls/dmime/segment.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dlls/dmime/segment.c b/dlls/dmime/segment.c
index 36766db..22218b5 100644
--- a/dlls/dmime/segment.c
+++ b/dlls/dmime/segment.c
@@ -813,7 +813,8 @@ static HRESULT IDirectMusicSegment8Impl_IPersistStream_LoadTrack (LPPERSISTSTREA
   /* release all loading-related stuff */
   IPersistStream_Release (pPersistStream);
 
-  hr = IDirectMusicSegment8Impl_IDirectMusicSegment8_InsertTrack ((LPDIRECTMUSICSEGMENT8)&This->SegmentVtbl, *ppTrack, pTrack_hdr->dwGroup); /* at dsPosition */
+  hr = IDirectMusicSegment8_InsertTrack((LPDIRECTMUSICSEGMENT8)&This->SegmentVtbl, *ppTrack,
+                                        pTrack_hdr->dwGroup); /* at dsPosition */
   if (FAILED(hr)) {
     ERR(": could not insert track\n");
     return hr;




More information about the wine-cvs mailing list