]> git.lyx.org Git - lyx.git/blob - src/insets/insetlof.C
Some more changes for updating text-insets.
[lyx.git] / src / insets / insetlof.C
1 #include <config.h>
2
3 #ifdef __GNUG__
4 #pragma implementation
5 #endif
6
7 #include "insetlof.h"
8 #include "BufferView.h"
9 #include "LyXView.h"
10 #include "lyxfunc.h"
11 #include "commandtags.h"
12
13 string InsetLOF::getScreenLabel() const 
14 {
15         return _("List of Figures");
16 }
17
18 void InsetLOF::Edit(BufferView * bv, int, int, unsigned int)
19 {
20         bv->owner()->getLyXFunc()->Dispatch(LFUN_LOFVIEW);
21 }