Guest User

Untitled

a guest
Dec 11th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.23 KB | None | 0 0
  1.  
  2. bool TreeViewSvnModel::removeRow ( int row, const QModelIndex & parent)
  3. {
  4.     beginRemoveRows(parent, row,row);
  5.         NodeBase *child = nodeFromIndex(parent)->m_childrens.at(row);
  6.         Node::del( child);
  7.     endRemoveRows();
  8.  
  9.     return true;
  10. }
Add Comment
Please, Sign In to add comment