Definition at line 907 of file TextEdit.h. References GetSelectionLeftRight(), mCaret, OglGui::Window::mClipboardString, mMark, and mText. Referenced by Cut(), and KeyboardFunc(). 00908 { 00909 if (mCaret == mMark) 00910 return; 00911 00912 int left,right; 00913 GetSelectionLeftRight(left, right); 00914 mClipboardString = mText.substr(left, right - left); 00915 }
Here is the call graph for this function:
|