Changes between Initial Version and Version 2 of Ticket #38


Ignore:
Timestamp:
Dec 21, 2007, 10:38:44 PM (16 years ago)
Author:
mloskot
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #38

    • Property Reporter changed from mateusz@… to mloskot
    • Property Priority 2major
    • Property Milestone imported
    • Property Resolution nonefixed
    • Property Severity AnnoyanceSignificant
  • Ticket #38 – Description

    initial v2  
    1 {{{
    21File SubgraphDepthLocater.cpp is out of date regarding last changes, especially wole body of function SubgraphDepthLocater::findStabbedSegments needs to be updated.
    32
    43Noticed issues:
    5 1. Line 159, near seg->toString()
    6 No 'seg' defined, so operator and member call can not be resolved.
     4 1. Line 159, near seg->toString()
     5    No 'seg' defined, so operator and member call can not be resolved.
    76
    8 2. There are some #ifdefs related to SKIP_LS
    9 which seem to be legacy:
     7 2. There are some #ifdefs related to SKIP_LS which seem to be legacy:
    108
    11 e.g.
     9{{{
    1210#ifndef SKIP_LS
    1311seg.p0=pts->getAt(i);
    1412seg.p1=pts->getAt(i + 1);
    1513#else
    16 
     14}}}
    1715If SKIP_LS is defined, code inside those #ifdefs does not compile.
    18 }}}