//Private help-functions void KornSubjectsDlg::prepareStep1Subjects(KMailDrop *drop) { _subjects->progress->setText(i18n("Rechecking box...")); _subjects->progress->setNumberOfSteps(1); _subjects->progress->setProgress(0); _subjects->atRechecking = true; connect(drop, SIGNAL(rechecked()), this, SLOT(slotReloadRechecked())); drop->recheck(); }
void KKioDrop::recheck() { if( _protocol->configName() == "process" ) //Process isn't pollable { emit rechecked(); return; } _count->count( this ); return; }
void KornSubjectsDlg::removeStep1Subjects(KMailDrop *drop) { disconnect(drop, SIGNAL(rechecked()), this, SLOT(slotReloadRechecked())); }