mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-18 16:49:43 +08:00
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
This commit is contained in:
parent
98461c5855
commit
92d53a9a80
@ -1,3 +1,10 @@
|
||||
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
|
||||
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user