Update of /cvsroot/simspark/simspark/contrib/rsgedit
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv1700
Modified Files:
sparktree.cpp
Log Message:
- applied fix to SparkTree::SelectLeaf; use GetNextSibling instead of GetNextChild (thanks Jan)
Index: sparktree.cpp
===================================================================
RCS file: /cvsroot/simspark/simspark/contrib/rsgedit/sparktree.cpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** sparktree.cpp 15 Apr 2007 12:19:31 -0000 1.6
--- sparktree.cpp 25 Apr 2007 20:08:43 -0000 1.7
***************
*** 247,252 ****
}
}
!
! item = mTree->GetNextChild(item, cookie);
}
--- 247,251 ----
}
}
! item = mTree->GetNextSibling(item);
}
|