From: Tanton Gibbs (thgibbs_at_[hidden])
Date: 2002-08-27 09:05:51


> > my_button.on_click = bind( (_1 ->* &A::GetController).DoSomething
> (),
> > this );

I think what you want is something like
bind( &Controller::DoSomething,
         bind( &A::GetController, _1 ) );