mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-26 11:16:55 +00:00
some connections not made because of:
- signal typo - slots typos git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14257 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
9f5f309ea2
commit
c8a91657d2
@ -184,7 +184,7 @@ PrefAscii::PrefAscii(QWidget * parent)
|
|||||||
{
|
{
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
connect(asciiLinelengthSB, SIGNAL(valueChanged(int)),
|
connect(asciiLinelengthSB, SIGNAL(valueChanged(int)),
|
||||||
this, SIGNAL(changed));
|
this, SIGNAL(changed()));
|
||||||
connect(asciiRoffED, SIGNAL(textChanged(const QString&)),
|
connect(asciiRoffED, SIGNAL(textChanged(const QString&)),
|
||||||
this, SIGNAL(changed()));
|
this, SIGNAL(changed()));
|
||||||
}
|
}
|
||||||
@ -283,7 +283,7 @@ QString PrefKeyboard::testKeymap(QString keymap)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void PrefKeyboard::on_firstKeymapED_clicked()
|
void PrefKeyboard::on_firstKeymapPB_clicked(bool)
|
||||||
{
|
{
|
||||||
QString file = testKeymap(firstKeymapED->text());
|
QString file = testKeymap(firstKeymapED->text());
|
||||||
if (!file.isEmpty())
|
if (!file.isEmpty())
|
||||||
@ -291,7 +291,7 @@ void PrefKeyboard::on_firstKeymapED_clicked()
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void PrefKeyboard::on_secondKeymapED_clicked()
|
void PrefKeyboard::on_secondKeymapPB_clicked(bool)
|
||||||
{
|
{
|
||||||
QString file = testKeymap(secondKeymapED->text());
|
QString file = testKeymap(secondKeymapED->text());
|
||||||
if (!file.isEmpty())
|
if (!file.isEmpty())
|
||||||
|
@ -122,8 +122,8 @@ public:
|
|||||||
virtual void update(LyXRC const & rc);
|
virtual void update(LyXRC const & rc);
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void on_firstKeymapED_clicked();
|
void on_firstKeymapPB_clicked(bool);
|
||||||
void on_secondKeymapED_clicked();
|
void on_secondKeymapPB_clicked(bool);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QString testKeymap(QString keymap);
|
QString testKeymap(QString keymap);
|
||||||
|
Loading…
Reference in New Issue
Block a user