| 151 | } |
| 152 | |
| 153 | void CAddressCompleter::setMaxVisibleItems(int count) |
| 154 | { |
| 155 | m_maxVisibleItems = count; |
| 156 | int itemHeight = 40; |
| 157 | int maxHeight = m_maxVisibleItems * itemHeight + 10; |
| 158 | setMaximumHeight(maxHeight); |
| 159 | } |
| 160 | |
| 161 | bool CAddressCompleter::eventFilter(QObject *watched, QEvent *event) |
| 162 | { |
no outgoing calls
no test coverage detected