mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
Get rid of non-existent slot warning after removal of Close button.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33237 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
a4e03846cd
commit
e6fbc8bc72
@ -89,7 +89,7 @@ bool FindAndReplaceWidget::eventFilter(QObject *obj, QEvent *event)
|
||||
QKeyEvent *e = static_cast<QKeyEvent *> (event);
|
||||
if (e->key() == Qt::Key_Escape
|
||||
&& e->modifiers() == Qt::NoModifier) {
|
||||
on_closePB_clicked();
|
||||
hideDialog();
|
||||
return true;
|
||||
} else if (e->key() == Qt::Key_Enter
|
||||
|| e->key() == Qt::Key_Return) {
|
||||
@ -112,7 +112,7 @@ bool FindAndReplaceWidget::eventFilter(QObject *obj, QEvent *event)
|
||||
QKeyEvent *e = static_cast<QKeyEvent *> (event);
|
||||
if (e->key() == Qt::Key_Escape
|
||||
&& e->modifiers() == Qt::NoModifier) {
|
||||
on_closePB_clicked();
|
||||
hideDialog();
|
||||
return true;
|
||||
} else if (e->key() == Qt::Key_Enter
|
||||
|| e->key() == Qt::Key_Return) {
|
||||
@ -519,7 +519,7 @@ void FindAndReplaceWidget::insertRegexp(QAction * action)
|
||||
}
|
||||
|
||||
|
||||
void FindAndReplaceWidget::on_closePB_clicked()
|
||||
void FindAndReplaceWidget::hideDialog()
|
||||
{
|
||||
dispatch(FuncRequest(LFUN_DIALOG_TOGGLE, "findreplaceadv"));
|
||||
}
|
||||
|
@ -64,13 +64,14 @@ private:
|
||||
void virtual showEvent(QShowEvent *ev);
|
||||
void virtual hideEvent(QHideEvent *ev);
|
||||
|
||||
void hideDialog();
|
||||
|
||||
protected Q_SLOTS:
|
||||
void on_findNextPB_clicked();
|
||||
void on_findPrevPB_clicked();
|
||||
void on_replaceNextPB_clicked();
|
||||
void on_replacePrevPB_clicked();
|
||||
void on_replaceallPB_clicked();
|
||||
void on_closePB_clicked();
|
||||
void insertRegexp(QAction *);
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user