Changeset 163 for smplayer/vendor/current/src/timeslider.cpp
- Timestamp:
- May 15, 2014, 7:53:54 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/vendor/current/src/timeslider.cpp
r140 r163 1 1 /* smplayer, GUI front-end for mplayer. 2 Copyright (C) 2006-201 3Ricardo Villalba <rvm@users.sourceforge.net>2 Copyright (C) 2006-2014 Ricardo Villalba <rvm@users.sourceforge.net> 3 3 4 4 This program is free software; you can redistribute it and/or modify … … 26 26 TimeSlider::TimeSlider( QWidget * parent ) : MySlider(parent) 27 27 { 28 dont_update = FALSE;28 dont_update = false; 29 29 setMinimum(0); 30 30 #ifdef SEEKBAR_RESOLUTION … … 58 58 qDebug("TimeSlider::stopUpdate"); 59 59 #endif 60 dont_update = TRUE;60 dont_update = true; 61 61 } 62 62 … … 65 65 qDebug("TimeSlider::resumeUpdate"); 66 66 #endif 67 dont_update = FALSE;67 dont_update = false; 68 68 } 69 69 … … 139 139 } 140 140 141 /* 141 142 void TimeSlider::wheelEvent( QWheelEvent * e ) { 142 143 e->ignore(); 143 144 } 144 145 */ 145 146 146 147 #include "moc_timeslider.cpp"
Note:
See TracChangeset
for help on using the changeset viewer.