iCub-main
changeaddressdialog.cpp
Go to the documentation of this file.
1 #include "changeaddressdialog.h"
2 #include "ui_changeaddressdialog.h"
3 
5  QDialog(parent),
6  ui(new Ui::ChangeAddressDialog)
7 {
8  ui->setupUi(this);
9 }
10 
12 {
13  delete ui;
14 }
15 
16 
18 {
19  ui->editOld->setText(address);
20 }
21 
23 {
24  return ui->editNew->text();
25 }
void setOldAddress(QString address)
ChangeAddressDialog(QWidget *parent=0)