mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Fix preferences panel.
This commit fixes a thinko in [8bab2338/lyxgit] causing the warning: QObject::connect: No such slot lyx::frontend::GuiPreferences::slotApplyRC() in ../../../../src/frontends/qt4/GuiPrefs.cpp:3308 QObject::connect: (sender name: 'applyPB') QObject::connect: (receiver name: 'PrefsUi')
This commit is contained in:
parent
eb121f9993
commit
35357c1225
@ -3305,7 +3305,7 @@ GuiPreferences::GuiPreferences(GuiView & lv)
|
||||
QDialog::setModal(false);
|
||||
|
||||
connect(savePB, SIGNAL(clicked()), this, SLOT(slotOK()));
|
||||
connect(applyPB, SIGNAL(clicked()), this, SLOT(slotApplyRC()));
|
||||
connect(applyPB, SIGNAL(clicked()), this, SLOT(slotApply()));
|
||||
connect(closePB, SIGNAL(clicked()), this, SLOT(slotClose()));
|
||||
connect(restorePB, SIGNAL(clicked()), this, SLOT(slotRestore()));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user