X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffactory.h;h=ae2265e674571a04c3ff2868fde6e24f41cdce79;hb=f5123ccfa82215030c70561af881175d92244492;hp=65d33b6db0b67dbe13b7a1129ee2456976c35c38;hpb=32871c1284f15265f652ff01c438e539a7c8181f;p=lyx.git diff --git a/src/factory.h b/src/factory.h index 65d33b6db0..ae2265e674 100644 --- a/src/factory.h +++ b/src/factory.h @@ -4,7 +4,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -15,17 +15,16 @@ namespace lyx { class Buffer; -class BufferView; class FuncRequest; class Inset; class Lexer; /// creates inset according to 'cmd' -Inset * createInset(BufferView * bv, FuncRequest const & cmd); +Inset * createInset(Buffer * buf, FuncRequest const & cmd); /// read inset from a file -Inset * readInset(Lexer & lex, Buffer const & buf); +Inset * readInset(Lexer & lex, Buffer * buf); } // namespace lyx