164 def __completerHighlighted(self, index): |
164 def __completerHighlighted(self, index): |
165 """ |
165 """ |
166 Private slot handling the highlighting of an entry of the completer. |
166 Private slot handling the highlighting of an entry of the completer. |
167 |
167 |
168 @param index index of the item (QModelIndex) |
168 @param index index of the item (QModelIndex) |
|
169 @return flah indicating a successful highlighting (boolean) |
169 """ |
170 """ |
170 if self.__suggestionsItem and \ |
171 if self.__suggestionsItem and \ |
171 self.__suggestionsItem.index().row() == index.row(): |
172 self.__suggestionsItem.index().row() == index.row(): |
172 return False |
173 return False |
173 |
174 |