iCub-main
changeinfodialog.cpp
Go to the documentation of this file.
1 #include "changeinfodialog.h"
2 #include "ui_changeinfodialog.h"
3 
5  QDialog(parent),
6  ui(new Ui::ChangeInfoDialog)
7 {
8  ui->setupUi(this);
9 }
10 
12 {
13  delete ui;
14 }
15 
17 {
18  ui->oldEdit->setText(info);
19 }
20 
22 {
23  return ui->newEdit->text();
24 }
void setOldInfo(QString info)
ChangeInfoDialog(QWidget *parent=0)