From 69191c005f50004368c9e0153ef19f6ccdbcedcb Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Fri, 29 Feb 2008 20:00:39 +0000 Subject: [PATCH] Fix InsetCitation::clone. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23357 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/insets/InsetCitation.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/insets/InsetCitation.h b/src/insets/InsetCitation.h index 1318c3767b..0cf4f77a15 100644 --- a/src/insets/InsetCitation.h +++ b/src/insets/InsetCitation.h @@ -57,7 +57,7 @@ public: static bool isCompatibleCommand(std::string const & cmd); private: /// - Inset * clone() const { return new InsetCitation(params()); } + Inset * clone() const { return new InsetCitation(*this); } /// we'll eventually want to be able to get info on this from the /// various CiteEngines static ParamInfo param_info_;