X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetloa.C;h=d11997c873972de74b6c690593c4957080724874;hb=3c8aba3b556871fb1100a2f98cd93d5d4e3f70c9;hp=71b5582477629e3c9f1e1b09aa71905e6fcafa03;hpb=27de1486ca34aaad446adb798d71a77d6f6304da;p=lyx.git diff --git a/src/insets/insetloa.C b/src/insets/insetloa.C index 71b5582477..d11997c873 100644 --- a/src/insets/insetloa.C +++ b/src/insets/insetloa.C @@ -4,26 +4,29 @@ * * LyX, The Document Processor * - * Copyright (C) 1995 Matthias Ettrich - * Copyright (C) 1996-1998 The LyX Team. + * Copyright 1995 Matthias Ettrich + * Copyright 1996-2000 The LyX Team. * - *======================================================*/ + * ====================================================== */ // Created by Bernhard 970908 #include - #ifdef __GNUG__ -#pragma implementation "insetloa.h" -#pragma implementation "insetlof.h" -#pragma implementation "insetlot.h" +#pragma implementation #endif -#include "LaTeXFeatures.h" #include "insetloa.h" -#include "insetlof.h" -#include "insetlot.h" +#include "LaTeXFeatures.h" + +void InsetLOA::Validate(LaTeXFeatures & features) const +{ + features.algorithm = true; +} + -void InsetLOA::Validate(LaTeXFeatures &features) const -{ features.algorithm = true; } +string InsetLOA::getScreenLabel() const +{ + return _("List of Algorithms"); +}