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