From: Lars Gullik Bjønnes Date: Thu, 30 May 2002 09:43:29 +0000 (+0000) Subject: 2002-05-30 Lars Gullik Bj�nnes X-Git-Tag: 1.6.10~19162 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=26349384b2ed4c0225be623d7293f2d47de9dbad;p=features.git 2002-05-30 Lars Gullik Bj�nnes insetexternal.C (clone): fix () bug when using new git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4293 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/insets/ChangeLog b/src/insets/ChangeLog index 0a02d78274..b973c71494 100644 --- a/src/insets/ChangeLog +++ b/src/insets/ChangeLog @@ -1,7 +1,11 @@ +2002-05-30 Lars Gullik Bjønnes + + * insetexternal.C (clone): fix () bug when using new + 2002-05-30 John Levon * insettabular.C: add const - + 2002-05-29 Jean-Marc Lasgouttes * insetgraphicsParams.C (Read): use lyxlex::eatLine to read the diff --git a/src/insets/insetexternal.C b/src/insets/insetexternal.C index 6b21708458..dd735bef01 100644 --- a/src/insets/insetexternal.C +++ b/src/insets/insetexternal.C @@ -197,7 +197,7 @@ void InsetExternal::validate(LaTeXFeatures & features) const Inset * InsetExternal::clone(Buffer const &, bool same_id) const { - InsetExternal * inset = new InsetExternal(); + InsetExternal * inset = new InsetExternal; inset->params_ = params_; inset->view_ = view_; if (same_id)