427 button->setAutoFillBackground (true); |
427 button->setAutoFillBackground (true); |
428 button->setStyleSheet (fmt ("background-color: %1", value)); |
428 button->setStyleSheet (fmt ("background-color: %1", value)); |
429 } |
429 } |
430 |
430 |
431 // ============================================================================= |
431 // ============================================================================= |
432 int ConfigDialog::getItemRow (QListWidgetItem* item, vector<QListWidgetItem*>& haystack) { |
432 int ConfigDialog::getItemRow (QListWidgetItem* item, List<QListWidgetItem*>& haystack) { |
433 int i = 0; |
433 int i = 0; |
434 |
434 |
435 for (QListWidgetItem* it : haystack) { |
435 for (QListWidgetItem* it : haystack) { |
436 if (it == item) |
436 if (it == item) |
437 return i; |
437 return i; |