Home
last modified time | relevance | path

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

/haiku/src/kits/interface/textview_support/
H A DUndoBuffer.cpp199 fDropTextLength(textLen), in DropUndoBuffer()
205 fDropText = (char*)malloc(fDropTextLength); in DropUndoBuffer()
206 memcpy(fDropText, text, fDropTextLength); in DropUndoBuffer()
212 fDropLocation -= fDropTextLength; in DropUndoBuffer()
227 fTextView->Delete(fDropLocation, fDropLocation + fDropTextLength); in UndoSelf()
244 fTextView->Insert(fDropText, fDropTextLength, fDropRunArray); in RedoSelf()
245 fTextView->Select(fDropLocation, fDropLocation + fDropTextLength); in RedoSelf()
H A DUndoBuffer.h105 int32 fDropTextLength; variable