mstover1    01/10/05 15:52:05

  Modified:    src/org/apache/jmeter/gui JMeterMenuBar.java
               src/org/apache/jmeter/util JMeterUtils.java
  Log:
  no message
  
  Revision  Changes    Path
  1.15      +4 -3      jakarta-jmeter/src/org/apache/jmeter/gui/JMeterMenuBar.java
  
  Index: JMeterMenuBar.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jmeter/src/org/apache/jmeter/gui/JMeterMenuBar.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- JMeterMenuBar.java        2001/10/01 03:40:31     1.14
  +++ JMeterMenuBar.java        2001/10/05 22:52:05     1.15
  @@ -144,7 +144,7 @@
                        editMenu.remove(edit_add);
                }
   
  -             // Insert the Add menu as the first menu item in the Edit menu. 
  +             // Insert the Add menu as the first menu item in the Edit menu.
                edit_add = menu;
                editMenu.insert(edit_add, 0);
        }
  @@ -163,7 +163,7 @@
                else
                {
                        // If we are disabling the Edit-->Add menu item and the 
Edit-->Remove
  -                     // menu item is disabled, then we also need to disable the 
Edit menu. 
  +                     // menu item is disabled, then we also need to disable the 
Edit menu.
                        // The Java Look and Feel Guidelines say to disable a menu if 
all
                        // menu items are disabled.
                        if (!edit_remove.isEnabled())
  @@ -187,7 +187,7 @@
                else
                {
                        // If we are disabling the Edit-->Remove menu item and the 
Edit-->Add
  -                     // menu item is disabled, then we also need to disable the 
Edit menu. 
  +                     // menu item is disabled, then we also need to disable the 
Edit menu.
                        // The Java Look and Feel Guidelines say to disable a menu if 
all
                        // menu items are disabled.
                        if (!edit_add.isEnabled())
  @@ -292,6 +292,7 @@
                analyze = new JMenuItem(JMeterUtils.getResString("analyze"));
                analyze.setMnemonic('A');
                analyze.addActionListener(ActionRouter.getInstance());
  +             analyze.setActionCommand("Analyze File");
                analyze.setEnabled(false);
                reportMenu.add(analyze);
   
  
  
  
  1.18      +2 -2      jakarta-jmeter/src/org/apache/jmeter/util/JMeterUtils.java
  
  Index: JMeterUtils.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jmeter/src/org/apache/jmeter/util/JMeterUtils.java,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- JMeterUtils.java  2001/10/05 22:32:45     1.17
  +++ JMeterUtils.java  2001/10/05 22:52:05     1.18
  @@ -74,7 +74,7 @@
    *
    *@author     <a href="mailto:[EMAIL PROTECTED]";>Stefano Mazzocchi</a>
    *@created    June 28, 2001
  - *@version    $Revision: 1.17 $ $Date: 2001/10/05 22:32:45 $
  + *@version    $Revision: 1.18 $ $Date: 2001/10/05 22:52:05 $
    */
   
   public class JMeterUtils
  @@ -920,6 +920,6 @@
         */
        public static String getJMeterVersion()
        {
  -             return "@VERSION@";
  +             return "1.7Beta";
        }
   }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to