Fix build with GCC.

This commit is contained in:
John Preston 2021-09-07 14:57:42 +03:00
parent 4582d2d0d5
commit 8f9e394dd0
4 changed files with 10 additions and 33 deletions

View File

@ -192,7 +192,7 @@ void Widget::SpeedButton::contextMenuEvent(QContextMenuEvent *e) {
if (text.isEmpty()) { if (text.isEmpty()) {
text = QString::number(speed); text = QString::number(speed);
} }
const auto action = _menu->addAction( _menu->addAction(
text, text,
[=] { setPlaybackSpeed(speed); }, [=] { setPlaybackSpeed(speed); },
(speed == currentSpeed) ? &st::mediaPlayerMenuCheck : nullptr); (speed == currentSpeed) ? &st::mediaPlayerMenuCheck : nullptr);

View File

@ -302,11 +302,11 @@ void ChatTheme::adjustPalette(const ChatThemeDescriptor &descriptor) {
} }
return result; return result;
}; };
const auto singleWithBg = [&](const QColor &c) { //const auto singleWithBg = [&](const QColor &c) {
return withBg([&](const QColor &with) { // return withBg([&](const QColor &with) {
return CountContrast(c, with); // return CountContrast(c, with);
}); // });
}; //};
if (withBg(minimal) < kMinAcceptableContrast) { if (withBg(minimal) < kMinAcceptableContrast) {
const auto white = QColor(255, 255, 255); const auto white = QColor(255, 255, 255);
const auto black = QColor(0, 0, 0); const auto black = QColor(0, 0, 0);
@ -875,7 +875,6 @@ ChatThemeBackground PrepareBackgroundImage(
: QImage(); : QImage();
if (data.isPattern && !prepared.isNull()) { if (data.isPattern && !prepared.isNull()) {
if (data.colors.size() < 2) { if (data.colors.size() < 2) {
const auto gradientRotation = 0; // No gradient here.
prepared = PreparePatternImage( prepared = PreparePatternImage(
std::move(prepared), std::move(prepared),
data.colors, data.colors,

View File

@ -122,7 +122,6 @@ void CountryInput::mousePressEvent(QMouseEvent *e) {
} }
const auto &list = Countries::Instance().list(); const auto &list = Countries::Instance().list();
auto index = 0;
const auto infoIt = ranges::find( const auto infoIt = ranges::find(
list, list,
entry.iso2, entry.iso2,

View File

@ -991,23 +991,15 @@ void MainMenu::refreshBackground() {
const auto fill = QSize(st::mainMenuWidth, st::mainMenuCoverHeight); const auto fill = QSize(st::mainMenuWidth, st::mainMenuCoverHeight);
const auto intensityText = IntensityOfColor(st::mainMenuCoverFg->c); const auto intensityText = IntensityOfColor(st::mainMenuCoverFg->c);
const auto background = Window::Theme::Background(); const auto background = Window::Theme::Background();
const auto &paper = background->paper();
const auto &prepared = background->prepared(); const auto &prepared = background->prepared();
const auto rects = Ui::ComputeChatBackgroundRects( const auto rects = Ui::ComputeChatBackgroundRects(
fill, fill,
prepared.size()); prepared.size());
auto backgroundImage = /*paper.isPattern() auto backgroundImage = QImage(
? Ui::GenerateBackgroundImage( fill * cIntRetinaFactor(),
fill * cIntRetinaFactor(), QImage::Format_ARGB32_Premultiplied);
paper.backgroundColors(),
paper.gradientRotation(),
paper.patternOpacity(),
[&](QPainter &p) { p.drawImage(rects.to, prepared, rects.from); })
: */QImage(
fill * cIntRetinaFactor(),
QImage::Format_ARGB32_Premultiplied);
QPainter p(&backgroundImage); QPainter p(&backgroundImage);
const auto drawShadow = [](QPainter &p) { const auto drawShadow = [](QPainter &p) {
@ -1021,21 +1013,8 @@ void MainMenu::refreshBackground() {
: Qt::black); : Qt::black);
}; };
// Solid color.
//if (const auto color = background->colorForFill()) {
// const auto intensity = IntensityOfColor(*color);
// p.fillRect(QRect(QPoint(), fill), *color);
// if (std::abs(intensity - intensityText) < kMinDiffIntensity) {
// drawShadow(p);
// }
// _background = backgroundImage;
// return;
//}
// Background image. // Background image.
//if (!paper.isPattern()) { p.drawImage(rects.to, prepared, rects.from);
p.drawImage(rects.to, prepared, rects.from);
//}
// Cut off the part of the background that is under text. // Cut off the part of the background that is under text.
const QRect underText( const QRect underText(