> This one has a few things (only xforms has been tried)
> http://www-rocq.inria.fr/~lasgoutt/lyx/make-frontends.log
cxx: Info: ../../../../lyx-devel/src/frontends/xforms/FormCitation.C, line 45:
meaningless qualifiers not compatible with
"void (FormCommand::*)(InsetCommand *const)" and
"void (FormCommand::*)(InsetCommand *)" (D:incmeaqua)
d->showCitation.connect(slot(this, &FormCitation::showInset));
-------------------------------------------^
fixed.
A.
Index: src/frontends/xforms/FormCommand.C
===================================================================
RCS file:
/usr/local/lyx/cvsroot/lyx-devel/src/frontends/xforms/FormCommand.C,v
retrieving revision 1.9
diff -u -r1.9 FormCommand.C
--- src/frontends/xforms/FormCommand.C 2000/10/02 00:10:24 1.9
+++ src/frontends/xforms/FormCommand.C 2000/10/03 10:54:25
@@ -28,7 +28,7 @@
{}
-void FormCommand::showInset( InsetCommand * const inset )
+void FormCommand::showInset( InsetCommand * inset )
{
if ( dialogIsOpen || inset == 0 ) return;
Index: src/frontends/xforms/FormCommand.h
===================================================================
RCS file:
/usr/local/lyx/cvsroot/lyx-devel/src/frontends/xforms/FormCommand.h,v
retrieving revision 1.9
diff -u -r1.9 FormCommand.h
--- src/frontends/xforms/FormCommand.h 2000/10/02 00:10:24 1.9
+++ src/frontends/xforms/FormCommand.h 2000/10/03 10:54:25
@@ -32,7 +32,7 @@
/// Slot launching dialog to (possibly) create a new inset
void createInset( string const & );
/// Slot launching dialog to an existing inset
- void showInset( InsetCommand * const );
+ void showInset( InsetCommand * );
/// pointer to the inset passed through showInset (if any)
InsetCommand * inset_;