1 #include "attributedialog.h"
2
3
4 AttributeDialog::AttributeDialog (QWidget *parent):QDialog (parent)
5 {
6 ui.setupUi (this);
7 }
8
9
10 void AttributeDialog::closeEvent( QCloseEvent* ce )
11 {
12 ce->accept(); // can be reopened with show()
13 hide();
14 emit (windowClosed() );
15 return;
16 }
17
18
19