Changed: Slots for buttons

--HG--
branch : feature-ryzom-installer
This commit is contained in:
kervala 2016-03-01 14:00:06 +01:00
parent 767ab0b83c
commit dac5a3b50f
2 changed files with 14 additions and 0 deletions

View file

@ -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()
{
}

View file

@ -29,6 +29,9 @@ public:
private slots:
void accept();
void onAddProfile();
void onDeleteProfile();
};
#endif