2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-31 14:45:14 +00:00

Improve compile time.

This commit is contained in:
John Preston
2017-11-21 13:20:56 +04:00
parent 6ca105a290
commit d93c1ccbaa
69 changed files with 692 additions and 5022 deletions

View File

@@ -103,6 +103,10 @@ int PhotoCropBox::mouseState(QPoint p) {
return 0;
}
rpl::producer<QImage> PhotoCropBox::ready() const {
return _readyImages.events();
}
void PhotoCropBox::mouseReleaseEvent(QMouseEvent *e) {
if (_downState) {
_downState = 0;

View File

@@ -29,9 +29,7 @@ public:
int32 mouseState(QPoint p);
rpl::producer<QImage> ready() const {
return _readyImages.events();
}
rpl::producer<QImage> ready() const;
protected:
void prepare() override;