mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 19:07:45 +00:00
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:
parent
93cba75629
commit
5fe1f30cdd
@ -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>
|
1999-10-21 Juergen Vigna <jug@sad.it>
|
||||||
|
|
||||||
* src/table.C (SetPWidth): Just a small fix so the alignment is not
|
* src/table.C (SetPWidth): Just a small fix so the alignment is not
|
||||||
|
@ -101,7 +101,7 @@ void InsetUrl::CloseUrlCB(FL_OBJECT *ob, long)
|
|||||||
|
|
||||||
extern "C" void C_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)
|
void InsetUrl::Edit(int, int)
|
||||||
|
Loading…
Reference in New Issue
Block a user