58 """ |
58 """ |
59 Public method to remove bookmarks from the model. |
59 Public method to remove bookmarks from the model. |
60 |
60 |
61 @param row row of the first bookmark to remove (integer) |
61 @param row row of the first bookmark to remove (integer) |
62 @param count number of bookmarks to remove (integer) |
62 @param count number of bookmarks to remove (integer) |
63 @param index of the parent bookmark node (QModelIndex) |
63 @param parent index of the parent bookmark node (QModelIndex) |
64 @return flag indicating successful removal (boolean) |
64 @return flag indicating successful removal (boolean) |
65 """ |
65 """ |
66 if parent.isValid(): |
66 if parent.isValid(): |
67 return False |
67 return False |
68 |
68 |