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:
André Pönitz 2007-08-12 12:40:11 +00:00
parent a33b2f1ca9
commit 6b229b2250
2 changed files with 8 additions and 22 deletions

View File

@ -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();

View File

@ -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: