| 24 |
_name_piece_surname->set_text(s); |
_name_piece_surname->set_text(s); |
| 25 |
return; |
return; |
| 26 |
} |
} |
| 27 |
|
|
| 28 |
|
std::string const MMIPersonalName::getNamePieceGiven(void) |
| 29 |
|
{ |
| 30 |
|
return(_name_piece_given->get_text()); |
| 31 |
|
} |
| 32 |
|
|
| 33 |
|
std::string const MMIPersonalName::getNamePieceSurname(void) |
| 34 |
|
{ |
| 35 |
|
return(_name_piece_surname->get_text()); |
| 36 |
|
} |
| 37 |
|
|
| 38 |
|
Gtk::Entry * const MMIPersonalName::getNamePieceGivenWidget(void) |
| 39 |
|
{ |
| 40 |
|
return _name_piece_given; |
| 41 |
|
} |
| 42 |
|
|
| 43 |
|
Gtk::Entry * const MMIPersonalName::getNamePieceSurnameWidget(void) |
| 44 |
|
{ |
| 45 |
|
return _name_piece_surname; |
| 46 |
|
} |