| 1440 | } |
| 1441 | |
| 1442 | bool WizSenderSelectorItem::operator<(const QListWidgetItem& other) const |
| 1443 | { |
| 1444 | const WizSenderSelectorItem* pOther = dynamic_cast<const WizSenderSelectorItem*>(&other); |
| 1445 | |
| 1446 | if (m_id.isEmpty()) |
| 1447 | return true; |
| 1448 | if (pOther->itemID().isEmpty()) |
| 1449 | return false; |
| 1450 | // |
| 1451 | return WizToolsSmartCompare(m_text, pOther->itemText()) < 0; |
| 1452 | } |
| 1453 | |
| 1454 | void WizClickableLabel::mouseReleaseEvent(QMouseEvent* ev) |
| 1455 | { |
nothing calls this directly
no test coverage detected