From 5fe1f30cdd6b9bb3d02ecec981d777514560072e Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Thu, 21 Oct 1999 15:05:20 +0000 Subject: [PATCH] Fix bug in a C wrapper recently introduced git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@222 a592a061-630c-0410-9148-cb99ea01b6c8 --- ChangeLog | 5 +++++ src/insets/inseturl.C | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 030476af08..dc7e3e80d1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1999-10-21 Jean-Marc Lasgouttes + + * src/insets/inseturl.C (C_InsetUrl_CloseUrlCB): forgot to pass + the 'ob' argument. + 1999-10-21 Juergen Vigna * src/table.C (SetPWidth): Just a small fix so the alignment is not diff --git a/src/insets/inseturl.C b/src/insets/inseturl.C index b7efb774c0..f25a945c20 100644 --- a/src/insets/inseturl.C +++ b/src/insets/inseturl.C @@ -101,7 +101,7 @@ void InsetUrl::CloseUrlCB(FL_OBJECT *ob, long) extern "C" void C_InsetUrl_CloseUrlCB(FL_OBJECT *ob, long) { - InsetUrl::CloseUrlCB(0,0); + InsetUrl::CloseUrlCB(ob,0); } void InsetUrl::Edit(int, int) -- 2.39.2