Advertisement
Guest User

Untitled

a guest
Mar 6th, 2015
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. edit boolean markLine(
  2. boolean set,
  3. Datasource _datasource,
  4. boolean _mark
  5. )
  6. {
  7. if (set)
  8. {
  9. if (!_mark)
  10. {
  11. if (selectedLines.exists(_datasource.RecId))
  12. {
  13. selectedLines.remove(_datasource.RecId);
  14. }
  15. }
  16. else
  17. {
  18. selectedLines.insert(_datasource.RecId,_datasource.recVersion);
  19. }
  20. }
  21.  
  22. return selectedLines.exists(_datasource.RecId);
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement