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