--- /home/cpdev/src/classpath/javax/swing/JLabel.java	2005-07-05 17:33:11.000000000 +0000
+++ javax/swing/JLabel.java	2005-06-30 05:35:09.000000000 +0000
@@ -92,17 +92,17 @@
   private transient int iconTextGap = 4;
 
   /**
-   * Creates a new vertically centered, horizontally on the leading edge
-   * JLabel object with text and no icon.
+   * Creates a new horizontally and vertically centered JLabel object with no
+   * text and no icon.
    */
   public JLabel()
   {
-    this(null, null, LEADING);
+    this(null, null, CENTER);
   }
 
   /**
-   * Creates a new vertically and horizontally centered
-   * JLabel object with no text and the given icon.
+   * Creates a new horizontally and vertically centered JLabel object with no
+   * text and the given icon.
    *
    * @param image The icon to use with the label.
    */
@@ -125,14 +125,14 @@
   }
 
   /**
-   * Creates a new horizontally leading and vertically centered JLabel 
-   * object with no icon and the given text.
+   * Creates a new horizontally and vertically centered JLabel object with no
+   * icon and the given text.
    *
    * @param text The text to use with the label.
    */
   public JLabel(String text)
   {
-    this(text, null, LEADING);
+    this(text, null, CENTER);
   }
 
   /**
