* "show popup without delay"-checkbox was missing a connect

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23247 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Stefan Schimanski 2008-02-26 13:09:44 +00:00
parent 8b42a021b2
commit eb2e971f6a

View File

@ -274,6 +274,8 @@ PrefInput::PrefInput(GuiPreferences * form, QWidget * parent)
this, SIGNAL(changed())); this, SIGNAL(changed()));
connect(popupTextCB, SIGNAL(clicked()), connect(popupTextCB, SIGNAL(clicked()),
this, SIGNAL(changed())); this, SIGNAL(changed()));
connect(popupAfterCompleteCB, SIGNAL(clicked()),
this, SIGNAL(changed()));
connect(mouseWheelSpeedSB, SIGNAL(valueChanged(double)), connect(mouseWheelSpeedSB, SIGNAL(valueChanged(double)),
this, SIGNAL(changed())); this, SIGNAL(changed()));
} }