Definition at line 223 of file TextField.h. References mCaretPosition, and mMarkerPosition. Referenced by DeleteSelection(), and DrawTextWithCursor(). 00224 { 00225 if (mMarkerPosition < mCaretPosition) 00226 { 00227 left = mMarkerPosition; 00228 right = mCaretPosition; 00229 } 00230 else 00231 { 00232 left = mCaretPosition; 00233 right = mMarkerPosition; 00234 } 00235 }
|