| 273 | constexpr const char* kStatusBarCompactLabelObjectName = "statusBarCompactLabel"; |
| 274 | |
| 275 | QString statusBarCompactLabelStyle(const QString& color) |
| 276 | { |
| 277 | return QStringLiteral( |
| 278 | "QLabel#statusBarCompactLabel { color: %1; font-size: 12px; background: transparent; }") |
| 279 | .arg(color); |
| 280 | } |
| 281 | |
| 282 | void applyStatusBarCompactLabelStyle(QLabel* label, const QString& color) |
| 283 | { |
no outgoing calls
no test coverage detected