mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
parent
2747056889
commit
fd9c905ba3
26 changed files with 51 additions and 51 deletions
|
@ -30,13 +30,13 @@ public:
|
|||
MinMaxAvgWidgetPrivate(MinMaxAvgWidget *owner)
|
||||
{
|
||||
avgIco = new QLabel(owner);
|
||||
avgIco->setPixmap(QIcon(":average").pixmap(16, 16));
|
||||
avgIco->setPixmap(QIcon(":/average").pixmap(16, 16));
|
||||
avgIco->setToolTip(QObject::tr("Average"));
|
||||
minIco = new QLabel(owner);
|
||||
minIco->setPixmap(QIcon(":minimum").pixmap(16, 16));
|
||||
minIco->setPixmap(QIcon(":/minimum").pixmap(16, 16));
|
||||
minIco->setToolTip(QObject::tr("Minimum"));
|
||||
maxIco = new QLabel(owner);
|
||||
maxIco->setPixmap(QIcon(":maximum").pixmap(16, 16));
|
||||
maxIco->setPixmap(QIcon(":/maximum").pixmap(16, 16));
|
||||
maxIco->setToolTip(QObject::tr("Maximum"));
|
||||
avgValue = new QLabel(owner);
|
||||
minValue = new QLabel(owner);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue