예제 #1
0
파일: newauthor.cpp 프로젝트: KDE/simon
NewAuthor::NewAuthor(QWidget* parent) : KDialog(parent)
{
  QWidget *widget = new QWidget( this );
  ui.setupUi(widget);

  setMainWidget( widget );
  setCaption( i18n("Author") );

  connect(ui.leName, SIGNAL(textChanged(QString)), this, SLOT(checkIfComplete()));
  connect(ui.leContact, SIGNAL(textChanged(QString)), this, SLOT(checkIfComplete()));

  checkIfComplete();
}
예제 #2
0
bool AdvExercise::isAdvExerciseComplete(unsigned int tryNum){
	return checkIfComplete(tryNum);
}