NO HAY CÓDIGO FUENTE git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.TRichView@1 b34d35ef-135b-4489-b9d1-9916e9c25524
21 lines
600 B
ObjectPascal
21 lines
600 B
ObjectPascal
unit RVUndoStr;
|
|
|
|
interface
|
|
uses RVEdit;
|
|
|
|
const RVUndoTypeNamesEn : array [TRVUndoType] of String =
|
|
|
|
(
|
|
'', // <- no undo
|
|
'removing', 'inserting', 'paragraph modification',
|
|
'editing', 'page break', 'removing page break',
|
|
'typing', 'tag modification', 'changing text style',
|
|
'inserting checkpoint', 'removing checkpoint',
|
|
'editing checkpoint','modifying', 'bullets',
|
|
'' // <- use custom undo name instead
|
|
);
|
|
|
|
implementation
|
|
|
|
end.
|