From: Stefan Csomor Date: Sat, 4 Apr 2009 09:05:21 +0000 (+0000) Subject: fixing 64 bit value transfer X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/1f45087210e733e56f4f6a15462fd66a1a070511 fixing 64 bit value transfer git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60006 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/osx/carbon/mediactrl.cpp b/src/osx/carbon/mediactrl.cpp index 662469dfef..56503d2df0 100644 --- a/src/osx/carbon/mediactrl.cpp +++ b/src/osx/carbon/mediactrl.cpp @@ -764,7 +764,8 @@ bool wxQTMediaBackend::SetPosition(wxLongLong where) { TimeRecord theTimeRecord; memset(&theTimeRecord, 0, sizeof(TimeRecord)); - theTimeRecord.value.lo = where.GetValue(); + theTimeRecord.value.lo = where.GetLo(); + theTimeRecord.value.hi = where.GetHi(); theTimeRecord.scale = ::GetMovieTimeScale(m_movie); theTimeRecord.base = ::GetMovieTimeBase(m_movie); ::SetMovieTime(m_movie, &theTimeRecord);