View | Details | Raw Unified | Return to bug 19479
Collapse All | Expand All

(-)trunk.orig/src/alerticon.cpp (-1 / +1 lines)
Lines 62-68 Link Here
62
{
62
{
63
	animTimer = new QTimer(this);
63
	animTimer = new QTimer(this);
64
	connect(animTimer, SIGNAL(timeout()), SLOT(animTimeout()));
64
	connect(animTimer, SIGNAL(timeout()), SLOT(animTimeout()));
65
	animTimer->start(120 * 5);
65
	// animTimer->start(120 * 5);
66
	frame = 0;
66
	frame = 0;
67
67
68
	// blank icon
68
	// blank icon
(-)trunk.orig/src/contactview.cpp (-1 / +1 lines)
Lines 2016-2022 Link Here
2016
2016
2017
	// animation timer
2017
	// animation timer
2018
	d->animTimer = new QTimer(this);
2018
	d->animTimer = new QTimer(this);
2019
	d->animTimer->start(120 * 5);
2019
	// d->animTimer->start(120 * 5);
2020
2020
2021
	d->recalculateSizeTimer = new QTimer(this);
2021
	d->recalculateSizeTimer = new QTimer(this);
2022
	connect(d->recalculateSizeTimer, SIGNAL(timeout()), d, SLOT(recalculateSize()));
2022
	connect(d->recalculateSizeTimer, SIGNAL(timeout()), d, SLOT(recalculateSize()));
(-)trunk.orig/src/tools/iconset/anim.cpp (+1 lines)
Lines 184-189 Link Here
184
184
185
	void restartTimer()
185
	void restartTimer()
186
	{
186
	{
187
		return;
187
		if ( !paused && speed > 0 ) {
188
		if ( !paused && speed > 0 ) {
188
			int frameperiod = frames[frame].period;
189
			int frameperiod = frames[frame].period;
189
			int i = frameperiod >= 0 ? frameperiod * 100/speed : 0;
190
			int i = frameperiod >= 0 ? frameperiod * 100/speed : 0;
(-)trunk.orig/src/tools/idle/idle.cpp (-2 / +2 lines)
Lines 93-100 Link Here
93
		d->idleSince = QDateTime::currentDateTime();
93
		d->idleSince = QDateTime::currentDateTime();
94
	}
94
	}
95
95
96
	// poll every second (use a lower value if you need more accuracy)
96
	// don't poll every second (use a lower value if you need more accuracy)
97
	d->checkTimer.start(1000);
97
	d->checkTimer.start(300000);
98
}
98
}
99
99
100
void Idle::stop()
100
void Idle::stop()
(-)trunk.orig/src/tools/tunecontroller/pollingtunecontroller.cpp (-1 / +2 lines)
Lines 38-44 Link Here
38
PollingTuneController::PollingTuneController()
38
PollingTuneController::PollingTuneController()
39
{
39
{
40
	connect(&timer_, SIGNAL(timeout()), SLOT(check()));
40
	connect(&timer_, SIGNAL(timeout()), SLOT(check()));
41
	timer_.start(3000);
41
	// timer_.start(3000);
42
}
42
}
43
43
44
44
Lines 48-53 Link Here
48
 */
48
 */
49
void PollingTuneController::setInterval(int interval)
49
void PollingTuneController::setInterval(int interval)
50
{
50
{
51
	return;
51
	if (interval > 0)
52
	if (interval > 0)
52
		timer_.start(interval);
53
		timer_.start(interval);
53
	else
54
	else

Return to bug 19479