[Pydev-cvs] org.python.pydev/src/org/python/pydev/editor/actions PySelection.java,1.3,1.4
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2004-09-15 17:36:18
|
Update of /cvsroot/pydev/org.python.pydev/src/org/python/pydev/editor/actions In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25438/src/org/python/pydev/editor/actions Modified Files: PySelection.java Log Message: Making refactoring. Index: PySelection.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/src/org/python/pydev/editor/actions/PySelection.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PySelection.java 16 Aug 2004 13:31:00 -0000 1.3 --- PySelection.java 15 Sep 2004 17:36:09 -0000 1.4 *************** *** 44,47 **** --- 44,48 ---- /** Cursor offset. */ public int absoluteCursorOffset; + public ITextSelection textSelection; /** *************** *** 77,80 **** --- 78,82 ---- // Grab the selection ITextSelection selection = getITextSelection(); + this.textSelection = selection; this.absoluteCursorOffset = selection.getOffset(); |