512 } |
512 } |
513 |
513 |
514 // ============================================================================= |
514 // ============================================================================= |
515 // Finds the given list widget item in the list of widget items given. |
515 // Finds the given list widget item in the list of widget items given. |
516 // ----------------------------------------------------------------------------- |
516 // ----------------------------------------------------------------------------- |
517 int ConfigDialog::getItemRow (QListWidgetItem* item, List<QListWidgetItem*>& haystack) |
517 int ConfigDialog::getItemRow (QListWidgetItem* item, QList<QListWidgetItem*>& haystack) |
518 { int i = 0; |
518 { int i = 0; |
519 |
519 |
520 for (QListWidgetItem * it : haystack) |
520 for (QListWidgetItem * it : haystack) |
521 { if (it == item) |
521 { if (it == item) |
522 return i; |
522 return i; |