X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetlof.h;h=20e9790c5d0dbd08c11683e5747da88856c17cf3;hb=3c8aba3b556871fb1100a2f98cd93d5d4e3f70c9;hp=f091565bc5fd6ca9297d0775b25233be7b6ea9dd;hpb=188833d864794c9c1ec42a8361b93aaa718874ea;p=lyx.git diff --git a/src/insets/insetlof.h b/src/insets/insetlof.h index f091565bc5..20e9790c5d 100644 --- a/src/insets/insetlof.h +++ b/src/insets/insetlof.h @@ -5,42 +5,42 @@ * LyX, The Document Processor * * Copyright 1995 Matthias Ettrich - * Copyright 1996-1999 the LyX Team. + * Copyright 1996-2000 the LyX Team. * * ====================================================== */ #ifndef INSET_LOF_H #define INSET_LOF_H -#ifdef __GNUG__ -#pragma interface -#endif - #include "insetcommand.h" #include "gettext.h" // Created by Lgb 970527 +#ifdef __GNUG__ +#pragma interface +#endif + /** Used to insert table of contents */ -class InsetLOF: public InsetCommand { +class InsetLOF : public InsetCommand { public: /// - InsetLOF(): InsetCommand("listoffigures") {} + InsetLOF() : InsetCommand("listoffigures") {} /// - InsetLOF(Buffer * b): InsetCommand("listoffigures"), owner(b) {} + explicit + InsetLOF(Buffer * b) : InsetCommand("listoffigures"), owner(b) {} /// - Inset * Clone() { return new InsetLOF(owner); } + Inset * Clone() const { return new InsetLOF(owner); } /// - string getScreenLabel() const { return _("List of Figures"); } + string getScreenLabel() const; - //void Edit(int, int); /// - unsigned char Editable() const { - return 0; // not yet + EDITABLE Editable() const { + return NOT_EDITABLE; // not yet } /// - bool Display() const { return true; } + bool display() const { return true; } /// Inset::Code LyxCode() const { return Inset::LOF_CODE; } private: