commit | b150ea67a91fbd70781af13ca2258eb3f3ebea4c | [log] [tgz] |
---|---|---|
author | Andrew Talbot <andrew.talbot@talbotville.com> | Thu Aug 16 21:57:12 2007 +0100 |
committer | Alexandre Julliard <julliard@winehq.org> | Fri Aug 17 12:01:37 2007 +0200 |
tree | 79d8b767577f3c61cc24c09e360fc6968e7027c2 | |
parent | 106b900113c95716b2b7e23c1da5d33f84db9812 [diff] [blame] |
riched20: Constify some variables.
diff --git a/dlls/riched20/undo.c b/dlls/riched20/undo.c index 2a9d915..d277e26 100644 --- a/dlls/riched20/undo.c +++ b/dlls/riched20/undo.c
@@ -48,7 +48,7 @@ } } -ME_UndoItem *ME_AddUndoItem(ME_TextEditor *editor, ME_DIType type, ME_DisplayItem *pdi) { +ME_UndoItem *ME_AddUndoItem(ME_TextEditor *editor, ME_DIType type, const ME_DisplayItem *pdi) { if (editor->nUndoMode == umIgnore) return NULL; else if (editor->nUndoLimit == 0)