]> git.lyx.org Git - features.git/commitdiff
fix linking issues
authorLars Gullik Bjønnes <larsbj@gullik.org>
Mon, 10 Sep 2001 08:37:25 +0000 (08:37 +0000)
committerLars Gullik Bjønnes <larsbj@gullik.org>
Mon, 10 Sep 2001 08:37:25 +0000 (08:37 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2715 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/xforms/ChangeLog
src/frontends/xforms/Toolbar_pimpl.C

index 764f3bcf65fc21b932cb81e7acece32696f9d1c9..603127aff09a637681dcea366a616649ac2983e6 100644 (file)
@@ -1,3 +1,12 @@
+2001-09-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
+
+       * Toolbar_pimpl.C (C_Toolbar_BubblePost): fix linking
+       (C_Toolbar_BubbleTimerCB): fix linking
+
+       * FormMathsBitmap.C (form): use get() to get the raw pointer.
+
+       * FormMathsBitmap.h: use shared_c_ptr for form_ as well.
+
 2001-09-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
 
        * combox.C (C_Combox_input_cb): make it static
index 655fa2a98e808e2865291bed56609b1448e0524d..1133dcfd03722b5d418d54e7526b85da4b1f85f2 100644 (file)
@@ -106,13 +106,15 @@ void BubbleTimerCB(FL_OBJECT *, long data)
 }
 
 
-extern "C"
+extern "C" {
+       
 static
 void C_Toolbar_BubbleTimerCB(FL_OBJECT * ob, long data)
 {
        BubbleTimerCB(ob, data);
 }
 
+}
 
 // post_handler for bubble-help (Matthias)
 int BubblePost(FL_OBJECT *ob, int event,
@@ -136,7 +138,8 @@ int BubblePost(FL_OBJECT *ob, int event,
 }
 
 
-extern "C"
+extern "C" {
+       
 static
 int C_Toolbar_BubblePost(FL_OBJECT * ob, int event,
                         FL_Coord /*mx*/, FL_Coord /*my*/, 
@@ -144,6 +147,8 @@ int C_Toolbar_BubblePost(FL_OBJECT * ob, int event,
 {
        return BubblePost(ob, event, 0, 0, key, xev);
 }
+
+}
 #endif
 
 } // namespace anon