Fix InsetCitation::clone.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23357 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2008-02-29 20:00:39 +00:00
parent 3431ea8753
commit 69191c005f

View File

@ -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_;