HowManyAreAnalyzed(): use status_user_agent to report progress
[linguistica.git] / verifydialog.cpp
bloba65decd7931f0aa1d48c34bb1f62508dad2da9b4
1 // Implementation for simple yes/no dialog
2 // Copyright © 2009 The University of Chicago
3 #include "verifydialog.h"
5 #include "generaldefinitions.h"
7 VerifyDialog::VerifyDialog( QString msg, QWidget* parent, Qt::WindowFlags fl )
8 : QDialog( parent, 0, false, fl ), Ui::VerifyDialogBase()
10 setupUi( this );
11 m_textLabel->setText( msg );
14 void VerifyDialog::yesSlot()
16 done( RESULT_YES );
19 void VerifyDialog::noSlot()
21 done( RESULT_NO );
25 void VerifyDialog::cancelSlot()
27 done( RESULT_CANCEL );