~ubuntu-branches/ubuntu/oneiric/electric/oneiric

« back to all changes in this revision

Viewing changes to com/sun/electric/tool/user/dialogs/BusParameters.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:
34
34
import com.sun.electric.database.variable.Variable;
35
35
import com.sun.electric.tool.Job;
36
36
import com.sun.electric.tool.JobException;
37
 
import com.sun.electric.tool.user.Highlight2;
 
37
import com.sun.electric.tool.user.Highlight;
38
38
import com.sun.electric.tool.user.User;
39
39
import com.sun.electric.tool.user.ui.EditWindow;
40
40
import com.sun.electric.tool.user.ui.TopLevel;
78
78
        public static void makeBusParameter()
79
79
        {
80
80
                EditWindow wnd = EditWindow.getCurrent();
81
 
                Highlight2 h = wnd.getHighlighter().getOneHighlight();
 
81
                Highlight h = wnd.getHighlighter().getOneHighlight();
82
82
                if (h == null)
83
83
                {
84
84
                        Job.getUserInterface().showErrorMessage("Select a node, arc, or export name first", "Nothing Selected");