]> git.lyx.org Git - lyx.git/commitdiff
Fix bug in a C wrapper recently introduced
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Thu, 21 Oct 1999 15:05:20 +0000 (15:05 +0000)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Thu, 21 Oct 1999 15:05:20 +0000 (15:05 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@222 a592a061-630c-0410-9148-cb99ea01b6c8

ChangeLog
src/insets/inseturl.C

index 030476af0877332477400a04d08784eb3861f3d4..dc7e3e80d101cc8b71cafc00e69a556fe97e06cf 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index b7efb774c09f43b21d443c85a5f8ddc3a10e0169..f25a945c2083b03ba42506a0845b50f41de966a9 100644 (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)