Re: [seq24-users] New Mouse Interaction patch (similar to fruityloops pianoroll) (patch against: re
Brought to you by:
rcbuse
|
From: Kevin M. <ke...@su...> - 2009-05-28 21:11:34
|
looks like others in that file have a little sigc: I'm not sure if GTK was updated, or deprecated the SigC in favor of sigc... or maybe you have an older GTK (I'm assuming Guido compiled before checking in. :) ) look at line 142 vs line 121 (using the right column of numbers): http://bazaar.launchpad.net/~seq24team/seq24/trunk/revision/56#src/options.cpp maybe just change adj->signal_value_changed().connect( SigC::bind(mem_fun(*this,&options::interaction_method_callback),adj)); to adj->signal_value_changed().connect( sigc::bind(mem_fun(*this,&options::interaction_method_callback),adj)); --- kevin meinert | http://www.subatomicglue.com On Thu, May 28, 2009 at 3:50 PM, Frank Kober <goe...@ya...> wrote: > > Hi Guido and Kevin, > Mysth-R and I both get the following error when compiling rev57: > > options.cpp: In constructor ‘options::options(Gtk::Window&, perform*)’: > options.cpp:142: error: ‘SigC’ has not been declared > > Regards > Frank > > > --- En date de : Mer 27.5.09, Guido Scholz <gui...@ba...> a > écrit : > > > De: Guido Scholz <gui...@ba...> > > Objet: Re: [seq24-users] New Mouse Interaction patch (similar to > fruityloops pianoroll) (patch against: rev48 source code from bazaar + my > win32 patch) > > À: seq...@li... > > Date: Mercredi 27 Mai 2009, 21h33 > > Am Sat, 18. Apr 2009 um 01:06:21 > > -0500 schrieb Kevin Meinert: > > > > > Hello Everyone, > > > > Hi Kevin, > > > > > A patch to upgrade *roll.* and a few other files for > > an alternate mouse > > > interaction method.(selectable in options menu, in > > .seq24rc, and on command > > > line) > > > > > > http://www.subatomicglue.com/seq24/rev48win32-add-mouseinteraction.patch > > > > also this patch made it into the repository (slightly > > modified and not > > extensively tested). > > > > Guido > > > > -- > > http://www.bayernline.de/~gscholz/<http://www.bayernline.de/%7Egscholz/> > > http://www.lug-burghausen.org/ > > > > -----La pièce jointe associée suit----- > > > > > ------------------------------------------------------------------------------ > > Register Now for Creativity and Technology (CaT), June 3rd, > > NYC. CaT > > is a gathering of tech-side developers & brand > > creativity professionals. Meet > > the minds behind Google Creative Lab, Visual Complexity, > > Processing, & > > iPhoneDevCamp as they present alongside digital > > heavyweights like Barbarian > > Group, R/GA, & Big Spaceship. http://p.sf.net/sfu/creativitycat-com > > -----La pièce jointe associée suit----- > > > > _______________________________________________ > > seq24-users mailing list > > seq...@li... > > https://lists.sourceforge.net/lists/listinfo/seq24-users > > > > > > > > ------------------------------------------------------------------------------ > Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT > is a gathering of tech-side developers & brand creativity professionals. > Meet > the minds behind Google Creative Lab, Visual Complexity, Processing, & > iPhoneDevCamp as they present alongside digital heavyweights like Barbarian > Group, R/GA, & Big Spaceship. http://p.sf.net/sfu/creativitycat-com > _______________________________________________ > seq24-users mailing list > seq...@li... > https://lists.sourceforge.net/lists/listinfo/seq24-users > |