From 233a8a5dadf2774fa16f71428d2d4046f23050b0 Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Thu, 26 Nov 2020 16:09:53 +0100 Subject: [PATCH] Fix variable shadowing --- src/timeline/InputBar.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/timeline/InputBar.cpp b/src/timeline/InputBar.cpp index 46bbd9a2..853fb262 100644 --- a/src/timeline/InputBar.cpp +++ b/src/timeline/InputBar.cpp @@ -526,17 +526,17 @@ InputBar::showPreview(const QMimeData &source, QString path, const QStringList & dimensions = img.size(); if (img.height() > 200 && img.width() > 360) img = img.scaled(360, 200, Qt::KeepAspectRatioByExpanding); - std::vector data; + std::vector data_; for (int y = 0; y < img.height(); y++) { for (int x = 0; x < img.width(); x++) { auto p = img.pixel(x, y); - data.push_back(static_cast(qRed(p))); - data.push_back(static_cast(qGreen(p))); - data.push_back(static_cast(qBlue(p))); + data_.push_back(static_cast(qRed(p))); + data_.push_back(static_cast(qGreen(p))); + data_.push_back(static_cast(qBlue(p))); } } blurhash = QString::fromStdString( - blurhash::encode(data.data(), img.width(), img.height(), 4, 3)); + blurhash::encode(data_.data(), img.width(), img.height(), 4, 3)); } http::client()->upload(