mirror of https://github.com/procxx/kepka.git
Closed beta 1.1.23.5: Fix build for Xcode and GCC.
This commit is contained in:
parent
0a5ba3490d
commit
0811190527
|
@ -46,7 +46,6 @@ void EmptyWidget::setFullHeight(rpl::producer<int> fullHeightValue) {
|
||||||
|
|
||||||
void EmptyWidget::setType(Type type) {
|
void EmptyWidget::setType(Type type) {
|
||||||
_type = type;
|
_type = type;
|
||||||
using Data = std::pair<const style::icon*, LangKey>;
|
|
||||||
_icon = [&] {
|
_icon = [&] {
|
||||||
switch (_type) {
|
switch (_type) {
|
||||||
case Type::Photo: return &st::infoEmptyPhoto;
|
case Type::Photo: return &st::infoEmptyPhoto;
|
||||||
|
|
|
@ -80,7 +80,7 @@ public:
|
||||||
// ClickHandlerHost interface
|
// ClickHandlerHost interface
|
||||||
void clickHandlerActiveChanged(const ClickHandlerPtr &p, bool active) override;
|
void clickHandlerActiveChanged(const ClickHandlerPtr &p, bool active) override;
|
||||||
|
|
||||||
int resizeGetHeight(int width) {
|
int resizeGetHeight(int width) override {
|
||||||
_width = width;
|
_width = width;
|
||||||
return _minh;
|
return _minh;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue