Re: r17053 - /lyx-devel/trunk/src/frontends/qt4/QGraphicsDial...

2007-02-05 Thread Jean-Marc Lasgouttes
> "Abdelrazak" == Abdelrazak Younes <[EMAIL PROTECTED]> writes: Abdelrazak> Because of you, JMarc almost did a full nervous breakdown. Abdelrazak> Or was it because of my caption stuff? Don't try to put the blame on others ;) JMarc

Re: r17053 - /lyx-devel/trunk/src/frontends/qt4/QGraphicsDial...

2007-02-05 Thread Abdelrazak Younes
Edwin Leuven wrote: the reason was that the toggled() signal is also trigged when we update the widgets ourselves and this has caused some crashes in the past the solution was to do the following widget->blockSignals(true) widget->setToggled(true) widget->blockSignals(false) which works but i

Re: r17053 - /lyx-devel/trunk/src/frontends/qt4/QGraphicsDial...

2007-02-05 Thread Edwin Leuven
the reason was that the toggled() signal is also trigged when we update the widgets ourselves and this has caused some crashes in the past the solution was to do the following widget->blockSignals(true) widget->setToggled(true) widget->blockSignals(false) which works but is a bit ugly, connect

Re: r17053 - /lyx-devel/trunk/src/frontends/qt4/QGraphicsDial...

2007-02-05 Thread Abdelrazak Younes
[EMAIL PROTECTED] wrote: Author: spitz Date: Mon Feb 5 11:11:16 2007 New Revision: 17053 URL: http://www.lyx.org/trac/changeset/17053 Log: * src/frontends/qt4/QGraphicsDialog.C: - fix r17050: use signals that are known to Qt 4.0 You were quicker than me ;-), thanks. Edwin, IIRC there were