Changeset 176 for smplayer/trunk/src/widgetactions.cpp
- Timestamp:
- May 3, 2016, 5:25:45 PM (9 years ago)
- Location:
- smplayer/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/trunk
- Property svn:mergeinfo changed
/smplayer/vendor/current merged: 175
- Property svn:mergeinfo changed
-
smplayer/trunk/src/widgetactions.cpp
r170 r176 1 1 /* smplayer, GUI front-end for mplayer. 2 Copyright (C) 2006-201 4Ricardo Villalba <rvm@users.sourceforge.net>2 Copyright (C) 2006-2016 Ricardo Villalba <rvm@users.sourceforge.net> 3 3 4 4 This program is free software; you can redistribute it and/or modify … … 20 20 #include "colorutils.h" 21 21 #include <QLabel> 22 #include <QDebug> 22 23 23 24 #if MINI_ARROW_BUTTONS … … 81 82 } else { 82 83 return -1; 84 } 85 } 86 87 void TimeSliderAction::setDuration(double t) { 88 qDebug() << "TimeSliderAction::setDuration:" << t; 89 total_time = t; 90 QList<QWidget *> l = createdWidgets(); 91 for (int n=0; n < l.count(); n++) { 92 TimeSlider *s = (TimeSlider*) l[n]; 93 s->setDuration(t); 83 94 } 84 95 }
Note:
See TracChangeset
for help on using the changeset viewer.