mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
Changed the buttons back to 'Cancel' and 'Remove'
This commit is contained in:
parent
3d72a75ed3
commit
91e51f8a10
|
@ -46,7 +46,7 @@
|
||||||
<enum>Qt::Horizontal</enum>
|
<enum>Qt::Horizontal</enum>
|
||||||
</property>
|
</property>
|
||||||
<property name="standardButtons">
|
<property name="standardButtons">
|
||||||
<set>QDialogButtonBox::No|QDialogButtonBox::Yes</set>
|
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
|
|
@ -9,6 +9,8 @@ RemoveFriendDialog::RemoveFriendDialog(QWidget *parent, const Friend *f)
|
||||||
setAttribute(Qt::WA_QuitOnClose, false);
|
setAttribute(Qt::WA_QuitOnClose, false);
|
||||||
ui.setupUi(this);
|
ui.setupUi(this);
|
||||||
ui.label->setText(ui.label->text().replace("<name>", f->getDisplayedName()));
|
ui.label->setText(ui.label->text().replace("<name>", f->getDisplayedName()));
|
||||||
|
auto removeButton = ui.buttonBox->button(QDialogButtonBox::Ok);
|
||||||
|
removeButton->setText(tr("Remove"));
|
||||||
adjustSize();
|
adjustSize();
|
||||||
connect(ui.buttonBox, &QDialogButtonBox::accepted, this, &RemoveFriendDialog::onAccepted);
|
connect(ui.buttonBox, &QDialogButtonBox::accepted, this, &RemoveFriendDialog::onAccepted);
|
||||||
connect(ui.buttonBox, &QDialogButtonBox::rejected, this, &RemoveFriendDialog::close);
|
connect(ui.buttonBox, &QDialogButtonBox::rejected, this, &RemoveFriendDialog::close);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user