/[classpath]/classpath/javax/swing/text/JTextComponent.java
ViewVC logotype

Diff of /classpath/javax/swing/text/JTextComponent.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.44 by rabbit78, Thu Nov 3 11:19:29 2005 UTC revision 1.45 by abalkiss, Thu Nov 3 19:40:36 2005 UTC
# Line 1347  public abstract class JTextComponent ext Line 1347  public abstract class JTextComponent ext
1347      start = Math.max(start, 0);      start = Math.max(start, 0);
1348      start = Math.min(start, length);      start = Math.min(start, length);
1349    
1350      end = Math.max(end, 0);      end = Math.max(end, start);
1351      end = Math.min(end, length);      end = Math.min(end, length);
1352    
1353      setCaretPosition(start);      setCaretPosition(start);

Legend:
Removed from v.1.44  
changed lines
  Added in v.1.45

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26