> "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
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
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
[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