mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 18:08:10 +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);
|
||||
connect(asciiLinelengthSB, SIGNAL(valueChanged(int)),
|
||||
this, SIGNAL(changed));
|
||||
this, SIGNAL(changed()));
|
||||
connect(asciiRoffED, SIGNAL(textChanged(const QString&)),
|
||||
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());
|
||||
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());
|
||||
if (!file.isEmpty())
|
||||
|
@ -122,8 +122,8 @@ public:
|
||||
virtual void update(LyXRC const & rc);
|
||||
|
||||
private slots:
|
||||
void on_firstKeymapED_clicked();
|
||||
void on_secondKeymapED_clicked();
|
||||
void on_firstKeymapPB_clicked(bool);
|
||||
void on_secondKeymapPB_clicked(bool);
|
||||
|
||||
private:
|
||||
QString testKeymap(QString keymap);
|
||||
|
Loading…
Reference in New Issue
Block a user