Version 1.5.4: Fix build in Xcode.

This commit is contained in:
John Preston 2018-12-24 12:16:05 +04:00
parent 68a313a58f
commit 12905f0dcb
2 changed files with 2 additions and 3 deletions

View File

@ -15,8 +15,8 @@ PhotoCropBox::PhotoCropBox(
QWidget*,
const QImage &img,
const QString &title)
: _img(img)
, _title(title) {
: _title(title)
, _img(img) {
}
void PhotoCropBox::prepare() {

View File

@ -37,7 +37,6 @@ private:
QImage _img;
QPixmap _thumb;
QImage _mask, _fade;
PeerId _peerId = 0;
rpl::event_stream<QImage> _readyImages;
};