From: <aki...@us...> - 2007-01-07 14:15:49
|
Revision: 1494 http://svn.sourceforge.net/gridarta/?rev=1494&view=rev Author: akirschbaum Date: 2007-01-07 06:15:48 -0800 (Sun, 07 Jan 2007) Log Message: ----------- Rename variable name. Modified Paths: -------------- trunk/crossfire/src/cfeditor/gameobject/scripts/ScriptArchData.java trunk/daimonin/src/daieditor/gameobject/scripts/ScriptArchData.java Modified: trunk/crossfire/src/cfeditor/gameobject/scripts/ScriptArchData.java =================================================================== --- trunk/crossfire/src/cfeditor/gameobject/scripts/ScriptArchData.java 2007-01-07 13:24:47 UTC (rev 1493) +++ trunk/crossfire/src/cfeditor/gameobject/scripts/ScriptArchData.java 2007-01-07 14:15:48 UTC (rev 1494) @@ -80,7 +80,7 @@ // popup frame for new scripts: private static JDialog newScriptFrame; - private static JLabel nsHeading; + private static JLabel headingLabel; private static PathButtonListener nsOkListener; @@ -378,9 +378,9 @@ // first line: heading final JPanel line1 = new JPanel(new FlowLayout(FlowLayout.LEFT)); - nsHeading = new JLabel("New scripted event for \"" + archName + "\":"); - nsHeading.setForeground(Color.black); - line1.add(nsHeading); + headingLabel = new JLabel("New scripted event for \"" + archName + "\":"); + headingLabel.setForeground(Color.black); + line1.add(headingLabel); mainPanel.add(line1); // event type @@ -467,7 +467,7 @@ newScriptFrame.setVisible(true); } else { // just set fields and show - nsHeading.setText("New scripted event for \"" + archName + "\":"); + headingLabel.setText("New scripted event for \"" + archName + "\":"); inputScriptPath.setText(defScriptName); inputOptions.setText(""); nsOkListener.setScriptArchData(this); Modified: trunk/daimonin/src/daieditor/gameobject/scripts/ScriptArchData.java =================================================================== --- trunk/daimonin/src/daieditor/gameobject/scripts/ScriptArchData.java 2007-01-07 13:24:47 UTC (rev 1493) +++ trunk/daimonin/src/daieditor/gameobject/scripts/ScriptArchData.java 2007-01-07 14:15:48 UTC (rev 1494) @@ -77,7 +77,7 @@ // popup frame for new scripts: private static JDialog newScriptFrame; - private static JLabel nsHeading; + private static JLabel headingLabel; private static PathButtonListener nsOkListener; @@ -327,9 +327,9 @@ // first line: heading final JPanel line1 = new JPanel(new FlowLayout(FlowLayout.LEFT)); - nsHeading = new JLabel("New scripted event for \"" + archName + "\":"); - nsHeading.setForeground(Color.black); - line1.add(nsHeading); + headingLabel = new JLabel("New scripted event for \"" + archName + "\":"); + headingLabel.setForeground(Color.black); + line1.add(headingLabel); mainPanel.add(line1); // event type @@ -416,7 +416,7 @@ newScriptFrame.setVisible(true); } else { // just set fields and show - nsHeading.setText("New scripted event for \"" + archName + "\":"); + headingLabel.setText("New scripted event for \"" + archName + "\":"); inputScriptPath.setText(defScriptName); inputOptions.setText(""); nsOkListener.setScriptArchData(this); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |