~ubuntu-branches/ubuntu/maverick/electric/maverick

« back to all changes in this revision

Viewing changes to com/sun/electric/tool/user/ErrorHighlight.java

  • Committer: Bazaar Package Importer
  • Author(s): Onkar Shinde
  • Date: 2010-01-09 16:26:04 UTC
  • mfrom: (1.1.4 upstream) (3.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20100109162604-1ypvmy8ijmlc6oq7
Tags: 8.10-1
* New upstream version.
* debian/control
  - Add libjava3d-java and quilt build dependencies.
  - Update standards version to 3.8.3.
  - Add libjava3d-java as recommends to binary package.
* debian/rules
  - Use quilt patch system instead of simple patchsys.
  - Add java3d related jar files to DEB_JARS.
* debian/patches/*
  - Update as per current upstream source. Convert to quilt.
* debian/ant.properties
  - Do not disable 3D plugin anymore.
  - Use new property to disable compilation of OS X related classes.
* debian/wrappers/electric
  - Add java3d related jar files to runtime classpath.
* debian/README.source
  - Change text to the appropriate one for quilt.

Show diffs side-by-side

added added

removed removed

Lines of Context:
357
357
    public void addToHighlighter(Highlighter h, EDatabase database)
358
358
    {
359
359
        Cell cell = getCell(database);
360
 
        if (thickLine) h.addThickLine(p1, p2, cell);
361
 
        else h.addLine(p1, p2, cell);
 
360
        h.addLine(p1, p2, cell, thickLine, true);
362
361
    }
363
362
    
364
363
    @Override
472
471
    {
473
472
        NodeInst ni = (NodeInst)getObject(database);
474
473
        if (ni != null)
475
 
            h.addElectricObject(ni, ni.getParent());
 
474
            h.addElectricObject(ni, true, ni.getParent());
476
475
    }
477
476
    
478
477
    @Override
525
524
    {
526
525
        ArcInst ai = (ArcInst)getObject(database);
527
526
        if (ai != null)
528
 
            h.addElectricObject(ai, ai.getParent());
 
527
            h.addElectricObject(ai, true, ai.getParent());
529
528
    }
530
529
    
531
530
    @Override