mirror of https://github.com/procxx/kepka.git
Fix build in Xcode.
This commit is contained in:
parent
1fc7dabd3e
commit
5f8143e6a4
|
@ -61,7 +61,6 @@ private:
|
|||
object_ptr<Ui::InputArea> _field = { nullptr };
|
||||
|
||||
int _thumbx = 0;
|
||||
int _thumby = 0;
|
||||
int _thumbw = 0;
|
||||
int _thumbh = 0;
|
||||
Text _name;
|
||||
|
|
|
@ -196,8 +196,8 @@ FileLoadResult::FileLoadResult(
|
|||
: taskId(taskId)
|
||||
, id(id)
|
||||
, to(to)
|
||||
, caption(caption)
|
||||
, album(std::move(album)) {
|
||||
, album(std::move(album))
|
||||
, caption(caption) {
|
||||
}
|
||||
|
||||
FileLoadTask::FileLoadTask(
|
||||
|
|
|
@ -195,7 +195,16 @@ inline bool operator!=(const WebFileImageLocation &a, const WebFileImageLocation
|
|||
namespace Images {
|
||||
|
||||
QImage prepareBlur(QImage image);
|
||||
void prepareRound(QImage &image, ImageRoundRadius radius, RectParts corners = RectPart::AllCorners, QRect target = QRect());
|
||||
void prepareRound(
|
||||
QImage &image,
|
||||
ImageRoundRadius radius,
|
||||
RectParts corners = RectPart::AllCorners,
|
||||
QRect target = QRect());
|
||||
void prepareRound(
|
||||
QImage &image,
|
||||
QImage *cornerMasks,
|
||||
RectParts corners = RectPart::AllCorners,
|
||||
QRect target = QRect());
|
||||
void prepareCircle(QImage &image);
|
||||
QImage prepareColored(style::color add, QImage image);
|
||||
QImage prepareOpaque(QImage image);
|
||||
|
|
Loading…
Reference in New Issue