]> git.lyx.org Git - lyx.git/blob - src/undo.C
Point fix, earlier forgotten
[lyx.git] / src / undo.C
1 /**
2  * \file undo.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "undo.h"
15
16 Undo::Undo(undo_kind kind_arg, int inset,
17            int first, int last,
18            int cursor, int cursor_pos_arg,
19            ParagraphList const & par)
20         :
21                 kind(kind_arg),
22                 inset_id(inset),
23                 first_par_offset(first),
24                 last_par_offset(last),
25                 cursor_par_offset(cursor),
26                 cursor_pos(cursor_pos_arg),
27                 pars(par)
28 {}
29