mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-21 23:09:40 +00:00
cosmetics (whitespace and no-op functions)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19451 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
a33b2f1ca9
commit
6b229b2250
@ -25,30 +25,19 @@ QURLDialog::QURLDialog(UrlView * form)
|
||||
{
|
||||
setupUi(this);
|
||||
|
||||
connect(okPB, SIGNAL(clicked()),
|
||||
form_, SLOT(slotOK()));
|
||||
connect(closePB, SIGNAL(clicked()),
|
||||
form_, SLOT(slotClose()));
|
||||
|
||||
connect( urlED, SIGNAL( textChanged(const QString&) ), this, SLOT( changed_adaptor() ) );
|
||||
connect( hyperlinkCB, SIGNAL( clicked() ), this, SLOT( changed_adaptor() ) );
|
||||
connect( nameED, SIGNAL( textChanged(const QString&) ), this, SLOT( changed_adaptor() ) );
|
||||
connect(okPB, SIGNAL(clicked()), form_, SLOT(slotOK()));
|
||||
connect(closePB, SIGNAL(clicked()), form_, SLOT(slotClose()));
|
||||
connect(urlED, SIGNAL(textChanged(const QString &)),
|
||||
this, SLOT(changed_adaptor()));
|
||||
connect(hyperlinkCB, SIGNAL(clicked()),
|
||||
this, SLOT(changed_adaptor()));
|
||||
connect(nameED, SIGNAL(textChanged(const QString &)),
|
||||
this, SLOT(changed_adaptor()));
|
||||
|
||||
setFocusProxy(urlED);
|
||||
}
|
||||
|
||||
|
||||
QURLDialog::~QURLDialog()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
void QURLDialog::show()
|
||||
{
|
||||
QDialog::show();
|
||||
}
|
||||
|
||||
|
||||
void QURLDialog::changed_adaptor()
|
||||
{
|
||||
form_->changed();
|
||||
|
@ -26,9 +26,6 @@ class QURLDialog : public QDialog, public Ui::QURLUi {
|
||||
Q_OBJECT
|
||||
public:
|
||||
QURLDialog(UrlView * form);
|
||||
~QURLDialog();
|
||||
|
||||
virtual void show();
|
||||
public Q_SLOTS:
|
||||
void changed_adaptor();
|
||||
protected:
|
||||
|
Loading…
x
Reference in New Issue
Block a user