]> git.lyx.org Git - lyx.git/blobdiff - src/factory.h
Fix bug #2213 (part 1): GuiChanges lacks "Previous Change" button.
[lyx.git] / src / factory.h
index 811c78c84a8f003ba80fa5fef8095cc52c732fd8..3b792acf373199d819a5d7e2bafbfb2845c626cf 100644 (file)
@@ -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.
  */
 namespace lyx {
 
 class Buffer;
-class BufferView;
 class FuncRequest;
-class InsetBase;
+class Inset;
 class Lexer;
 
 
 /// creates inset according to 'cmd'
-InsetBase * createInset(BufferView * bv, FuncRequest const & cmd);
+Inset * createInset(Buffer & buf, FuncRequest const & cmd);
 
 /// read inset from a file
-InsetBase * readInset(Lexer & lex, Buffer const & buf);
+Inset * readInset(Lexer & lex, Buffer const & buf);
 
 
 } // namespace lyx