| 112 | |
| 113 | |
| 114 | QIcon DebugControlsWidget::getColoredIcon(const QString& iconPath, const QColor& color) |
| 115 | { |
| 116 | auto pixmap = QPixmap(iconPath); |
| 117 | auto mask = pixmap.createMaskFromColor(QColor("transparent"), Qt::MaskInColor); |
| 118 | pixmap.fill(color); |
| 119 | pixmap.setMask(mask); |
| 120 | return QIcon(pixmap); |
| 121 | } |
| 122 | |
| 123 | |
| 124 | QString DebugControlsWidget::getToolTip(const QString& name) |
nothing calls this directly
no outgoing calls
no test coverage detected