144 """ |
144 """ |
145 Public method to remove history entries from the model. |
145 Public method to remove history entries from the model. |
146 |
146 |
147 @param row row of the first history entry to remove (integer) |
147 @param row row of the first history entry to remove (integer) |
148 @param count number of history entries to remove (integer) |
148 @param count number of history entries to remove (integer) |
149 @param index of the parent entry (QModelIndex) |
149 @param parent index of the parent entry (QModelIndex) |
150 @return flag indicating successful removal (boolean) |
150 @return flag indicating successful removal (boolean) |
151 """ |
151 """ |
152 if parent.isValid(): |
152 if parent.isValid(): |
153 return False |
153 return False |
154 |
154 |