Changes between Initial Version and Version 2 of Ticket #36


Ignore:
Timestamp:
Nov 25, 2007, 11:24:13 PM (16 years ago)
Author:
mloskot
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36

    • Property Severity AnnoyanceContent
    • Property Reporter changed from mateusz@… to mloskot
    • Property Priority 1major
    • Property Version 3.0.0svn-trunk
    • Property Milestone imported3.0.0
    • Property Resolution nonefixed
  • Ticket #36 – Description

    initial v2  
    1 {{{
    21In body of Quadtree::query member function, near line 103, foundItems are passed by referenc instead of pointer, so DEBUG check should be updated as well:
    32
    43line:
     4{{{
    55foundItems->size()
    6 
     6}}}
    77should read as:
    8 
     8{{{
    99foundItems.size()
     10}}}
    1011
    1112Fixed in patch attached to this report
    12 }}}