On Friday 31 May 2002 10:54 am, Jean-Marc Lasgouttes wrote: > Angus> I suspect that it is the same "wierd" xforms behaviour that > Angus> necessitates the call to tooltips().set(); in FormBase::show() > Angus> AFTER the form has been made visible. You could try and see if > Angus> the same fix works here too (add a toolbar.tooltips().set() > Angus> call at the end of XFormsView::show) > > Sorry ANgus, I tried to have a quick look, but it seems that there is > no such tooltips method. > > JMarc
You're smoking some of Lars baccy: class Tooltips : boost::noncopyable, public boost::signals::trackable { public: /// This method is connected to the tooltipsToggled signal. void set(); ... struct Toolbar::Pimpl { public: Tooltips * tooltip_; ... void XFormsView::create_form_form_main(int width, int height) { ... toolbar = new Toolbar(this, air, 30 + air + bw, toolbardefaults); ...