we really don't need to see all this debug output

svn path=/trunk/KDE/kdelibs/; revision=1019518
This commit is contained in:
Aaron J. Seigo 2009-09-03 19:31:26 +00:00
parent 72df46a81d
commit 1c265e78b3

View File

@ -361,17 +361,17 @@ DataEngine::SourceDict DataEngine::containerDict() const
void DataEngine::timerEvent(QTimerEvent *event) void DataEngine::timerEvent(QTimerEvent *event)
{ {
kDebug(); //kDebug();
if (event->timerId() == d->updateTimerId) { if (event->timerId() == d->updateTimerId) {
// if the freq update is less than 0, don't bother // if the freq update is less than 0, don't bother
if (d->minPollingInterval < 0) { if (d->minPollingInterval < 0) {
kDebug() << "uh oh.. no polling allowed!"; //kDebug() << "uh oh.. no polling allowed!";
return; return;
} }
// minPollingInterval // minPollingInterval
if (d->updateTimestamp.elapsed() < d->minPollingInterval) { if (d->updateTimestamp.elapsed() < d->minPollingInterval) {
kDebug() << "hey now.. slow down!"; //kDebug() << "hey now.. slow down!";
return; return;
} }