mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Changed: Slots for buttons
--HG-- branch : feature-ryzom-installer
This commit is contained in:
parent
767ab0b83c
commit
dac5a3b50f
2 changed files with 14 additions and 0 deletions
|
@ -24,6 +24,9 @@
|
||||||
CProfilesDialog::CProfilesDialog():QDialog()
|
CProfilesDialog::CProfilesDialog():QDialog()
|
||||||
{
|
{
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
|
|
||||||
|
connect(addButton, SIGNAL(clicked()), SLOT(onAddProfile));
|
||||||
|
connect(deleteButton, SIGNAL(clicked()), SLOT(onDeleteProfile));
|
||||||
}
|
}
|
||||||
|
|
||||||
CProfilesDialog::~CProfilesDialog()
|
CProfilesDialog::~CProfilesDialog()
|
||||||
|
@ -36,3 +39,11 @@ void CProfilesDialog::accept()
|
||||||
|
|
||||||
QDialog::accept();
|
QDialog::accept();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void CProfilesDialog::onAddProfile()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void CProfilesDialog::onDeleteProfile()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
|
@ -29,6 +29,9 @@ public:
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void accept();
|
void accept();
|
||||||
|
|
||||||
|
void onAddProfile();
|
||||||
|
void onDeleteProfile();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue