mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-12-18 16:42:54 +01:00
qt: fix unused function warning in scicon.cpp
Enclose MakeSingleColorImage in an anonymous namespace to avoid a unused function warning on Windows and MacOSX. Github-Pull: #6143
This commit is contained in:
@@ -11,7 +11,9 @@
|
|||||||
#include <QPalette>
|
#include <QPalette>
|
||||||
#include <QPixmap>
|
#include <QPixmap>
|
||||||
|
|
||||||
static void MakeSingleColorImage(QImage& img, const QColor& colorbase)
|
namespace {
|
||||||
|
|
||||||
|
void MakeSingleColorImage(QImage& img, const QColor& colorbase)
|
||||||
{
|
{
|
||||||
img = img.convertToFormat(QImage::Format_ARGB32);
|
img = img.convertToFormat(QImage::Format_ARGB32);
|
||||||
for (int x = img.width(); x--; )
|
for (int x = img.width(); x--; )
|
||||||
@@ -24,6 +26,8 @@ static void MakeSingleColorImage(QImage& img, const QColor& colorbase)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
QImage SingleColorImage(const QString& filename, const QColor& colorbase)
|
QImage SingleColorImage(const QString& filename, const QColor& colorbase)
|
||||||
{
|
{
|
||||||
QImage img(filename);
|
QImage img(filename);
|
||||||
|
|||||||
Reference in New Issue
Block a user