$NetBSD: patch-ad,v 1.1 2014/12/13 11:15:45 wiz Exp $ --- modules/gui/qt4/components/interface_widgets.cpp.orig 2013-10-25 14:16:49.000000000 +0000 +++ modules/gui/qt4/components/interface_widgets.cpp @@ -761,8 +761,8 @@ TimeLabel::TimeLabel( intf_thread_t *_p_ bufTimer->setSingleShot( true ); - CONNECT( THEMIM->getIM(), positionUpdated( float, int64_t, int ), - this, setDisplayPosition( float, int64_t, int ) ); + CONNECT( THEMIM->getIM(), positionUpdated( float, putime_t, int ), + this, setDisplayPosition( float, putime_t, int ) ); CONNECT( THEMIM->getIM(), cachingChanged( float ), this, updateBuffering( float ) ); CONNECT( bufTimer, timeout(), this, updateBuffering() ); @@ -770,7 +770,7 @@ TimeLabel::TimeLabel( intf_thread_t *_p_ setStyleSheet( "padding-left: 4px; padding-right: 4px;" ); } -void TimeLabel::setDisplayPosition( float pos, int64_t t, int length ) +void TimeLabel::setDisplayPosition( float pos, putime_t t, int length ) { showBuffering = false; bufTimer->stop();