Commit 92d53a9a by Michael Koch Committed by Michael Koch

2003-03-02 Michael Koch <konqueror@gmx.de>

	* javax/swing/text/Caret.java
	(getMagicCaretPosition): Fixed typo in method name.
	* javax/swing/text/DefaultCaret.java
	(getMagicCaretPosition): Fixed typo in method name.

From-SVN: r63673
parent 98461c58
2003-03-02 Michael Koch <konqueror@gmx.de>
* javax/swing/text/Caret.java
(getMagicCaretPosition): Fixed typo in method name.
* javax/swing/text/DefaultCaret.java
(getMagicCaretPosition): Fixed typo in method name.
2003-03-02 Michael Koch <konqueror@gmx.de>
* java/awt/List.java
(setMultipleSelections): Deprecated.
(delItem): Deprecated.
......
......@@ -46,7 +46,7 @@ public interface Caret
void deinstall(JTextComponent c);
int getBlinkRate();
int getDot();
Point getMagicaretPosition();
Point getMagicCaretPosition();
int getMark();
void install(JTextComponent c);
boolean isSelectionVisible();
......
......@@ -104,7 +104,7 @@ public class DefaultCaret extends Rectangle implements Caret, FocusListener, Mou
Point magic = null;
public void setMagicCaretPosition(Point p)
{ magic = p; }
public Point getMagicaretPosition()
public Point getMagicCaretPosition()
{ return magic; }
......@@ -167,6 +167,3 @@ public class DefaultCaret extends Rectangle implements Caret, FocusListener, Mou
repaint();
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment