mirror of
https://github.com/vale981/tdesktop
synced 2025-03-08 19:21:39 -05:00
fixed uninitialized var for 9014003
This commit is contained in:
parent
b17c277a62
commit
4b88aced20
1 changed files with 5 additions and 1 deletions
|
@ -125,7 +125,11 @@ PhotoSendBox::PhotoSendBox(const QString &phone, const QString &fname, const QSt
|
|||
, _compressed(this, lang(lng_send_image_compressed), true)
|
||||
, _send(this, lang(lng_send_button), st::defaultBoxButton)
|
||||
, _cancel(this, lang(lng_cancel), st::cancelBoxButton)
|
||||
, _phone(phone), _fname(fname), _lname(lname), _replyTo(replyTo) {
|
||||
, _phone(phone)
|
||||
, _fname(fname)
|
||||
, _lname(lname)
|
||||
, _replyTo(replyTo)
|
||||
, _confirmed(false) {
|
||||
connect(&_send, SIGNAL(clicked()), this, SLOT(onSend()));
|
||||
connect(&_cancel, SIGNAL(clicked()), this, SLOT(onClose()));
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue