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
This commit is contained in:
Jean-Marc Lasgouttes 1999-10-21 15:05:20 +00:00
parent 93cba75629
commit 5fe1f30cdd
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
1999-10-21 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/insets/inseturl.C (C_InsetUrl_CloseUrlCB): forgot to pass
the 'ob' argument.
1999-10-21 Juergen Vigna <jug@sad.it>
* src/table.C (SetPWidth): Just a small fix so the alignment is not

View File

@ -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)