1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
$NetBSD: patch-ad,v 1.1 2015/10/25 10:52:24 wiz Exp $
--- modules/gui/qt4/components/interface_widgets.cpp.orig 2012-04-27 17:14:57.000000000 +0000
+++ modules/gui/qt4/components/interface_widgets.cpp
@@ -579,8 +579,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() );
@@ -588,7 +588,7 @@ TimeLabel::TimeLabel( intf_thread_t *_p_
this->setContentsMargins( 4, 0, 4, 0 );
}
-void TimeLabel::setDisplayPosition( float pos, int64_t t, int length )
+void TimeLabel::setDisplayPosition( float pos, putime_t t, int length )
{
showBuffering = false;
bufTimer->stop();
|