Home
last modified time | relevance | path

Searched refs:fTypedText (Results 1 – 2 of 2) sorted by relevance

/haiku/src/kits/interface/textview_support/
H A DUndoBuffer.cpp254 fTypedText(NULL), in TypingUndoBuffer()
264 free(fTypedText); in ~TypingUndoBuffer()
273 free(fTypedText); in UndoSelf()
274 fTypedText = (char*)malloc(len); in UndoSelf()
275 memcpy(fTypedText, fTextView->Text() + fTypedStart, len); in UndoSelf()
290 fTextView->Insert(fTypedText, fTypedEnd - fTypedStart); in RedoSelf()
320 free(fTypedText); in _Reset()
321 fTypedText = NULL; in _Reset()
H A DUndoBuffer.h130 char* fTypedText; variable