mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
Fix tr warning in CallConfirmWidget
This commit is contained in:
parent
f75e32e1e3
commit
f8e069f053
|
@ -24,7 +24,7 @@ CallConfirmWidget::CallConfirmWidget(const QWidget *Anchor) :
|
|||
setPalette(palette);
|
||||
|
||||
QVBoxLayout *layout = new QVBoxLayout(this);
|
||||
QLabel *callLabel = new QLabel(tr("Incoming call..."), this);
|
||||
QLabel *callLabel = new QLabel(QObject::tr("Incoming call..."), this);
|
||||
callLabel->setAlignment(Qt::AlignHCenter);
|
||||
QDialogButtonBox *buttonBox = new QDialogButtonBox(Qt::Horizontal, this);
|
||||
QPushButton *accept = new QPushButton(this), *reject = new QPushButton(this);
|
||||
|
|
Loading…
Reference in New Issue
Block a user