mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 18:08:10 +00:00
connect to the right slots...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20165 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
2a1a156f47
commit
cc832049a9
@ -44,8 +44,8 @@ GuiTexinfoDialog::GuiTexinfoDialog(LyXView & lv)
|
|||||||
connect(viewPB, SIGNAL(clicked()), this, SLOT(viewClicked()));
|
connect(viewPB, SIGNAL(clicked()), this, SLOT(viewClicked()));
|
||||||
connect(whatStyleCO, SIGNAL(activated(const QString &)),
|
connect(whatStyleCO, SIGNAL(activated(const QString &)),
|
||||||
this, SLOT(enableViewPB()));
|
this, SLOT(enableViewPB()));
|
||||||
connect(whatStyleCO, SIGNAL(activated(int)), this, SLOT(update()));
|
connect(whatStyleCO, SIGNAL(activated(int)), this, SLOT(updateView()));
|
||||||
connect(pathCB, SIGNAL(stateChanged(int)), this, SLOT(update()));
|
connect(pathCB, SIGNAL(stateChanged(int)), this, SLOT(updateView()));
|
||||||
connect(rescanPB, SIGNAL(clicked()), this, SLOT(enableViewPB()));
|
connect(rescanPB, SIGNAL(clicked()), this, SLOT(enableViewPB()));
|
||||||
connect(rescanPB, SIGNAL(clicked()), this, SLOT(rescanClicked()));
|
connect(rescanPB, SIGNAL(clicked()), this, SLOT(rescanClicked()));
|
||||||
connect(fileListLW, SIGNAL(itemClicked(QListWidgetItem *)),
|
connect(fileListLW, SIGNAL(itemClicked(QListWidgetItem *)),
|
||||||
|
@ -32,11 +32,11 @@ GuiViewSourceDialog::GuiViewSourceDialog(ControlViewSource & controller)
|
|||||||
setWindowTitle(qt_("LaTeX Source"));
|
setWindowTitle(qt_("LaTeX Source"));
|
||||||
|
|
||||||
connect(viewFullSourceCB, SIGNAL(clicked()),
|
connect(viewFullSourceCB, SIGNAL(clicked()),
|
||||||
this, SLOT(update()));
|
this, SLOT(updateView()));
|
||||||
connect(autoUpdateCB, SIGNAL(toggled(bool)),
|
connect(autoUpdateCB, SIGNAL(toggled(bool)),
|
||||||
updatePB, SLOT(setDisabled(bool)));
|
updatePB, SLOT(setDisabled(bool)));
|
||||||
connect(updatePB, SIGNAL(clicked()),
|
connect(updatePB, SIGNAL(clicked()),
|
||||||
this, SLOT(update()));
|
this, SLOT(updateView()));
|
||||||
|
|
||||||
// setting a document at this point trigger an assertion in Qt
|
// setting a document at this point trigger an assertion in Qt
|
||||||
// so we disable the signals here:
|
// so we disable the signals here:
|
||||||
|
Loading…
Reference in New Issue
Block a user