gnash-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Gnash-dev] fltk builds all fail now on Debian


From: strk
Subject: Re: [Gnash-dev] fltk builds all fail now on Debian
Date: Tue, 13 Mar 2007 18:35:36 +0100

This is a known one. I didn't fix because I don't have fltk here.
The problem is that menu_quit and friends became non-static methods
so you need an object to call them.
The standard mem_fun and bind1st utilities should work, try
something like:

Gui* gui = <whatever it is>;
bind1st(mem_fun(Gui::menu_quit),  gui)

--strk;

On Tue, Mar 13, 2007 at 05:26:28PM +0000, Martin Guy wrote:
> Hi
>   Apart from opengl-fltk not existing and cairo-fltk having been
> disabled, now not even agg-fltk compiles, dying with:
> 
> gui/fltk.cpp: In member function 'void gnash::FltkGui::addMenuItems()':
> gui/fltk.cpp:302: error: invalid use of member (did you forget the '&' ?)
> gui/fltk.cpp:318: error: invalid use of member (did you forget the '&' ?)
> gui/fltk.cpp:319: error: invalid use of member (did you forget the '&' ?)
> gui/fltk.cpp:320: error: invalid use of member (did you forget the '&' ?)
> gui/fltk.cpp:321: error: invalid use of member (did you forget the '&' ?)
> gui/fltk.cpp:322: error: invalid use of member (did you forget the '&' ?)
> gui/fltk.cpp:323: error: invalid use of member (did you forget the '&' ?)
> gui/fltk.cpp:324: error: invalid use of member (did you forget the '&' ?)
> gui/fltk.cpp:325: error: invalid use of member (did you forget the '&' ?)
> gui/fltk.cpp:326: error: invalid use of member (did you forget the '&' ?)
> 
> these turn out to be lines like:
> 
>    new Item("Quit",                    0, callback_cast(menu_quit));
> 
> whereas lines like
> 
>    new Item("Open",                    0, 
>    callback_cast(menu_fltk_open_file));
> 
> work fine. Any ideas?
> 
>    M
> 
> 
> _______________________________________________
> Gnash-dev mailing list
> address@hidden
> http://lists.gnu.org/mailman/listinfo/gnash-dev

-- 

 ()   ASCII Ribbon Campaign
 /\   Keep it simple! 





reply via email to

[Prev in Thread] Current Thread [Next in Thread]