Fix focus proxy.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17618 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2007-03-28 20:14:50 +00:00
parent cb6cacaa6a
commit f93c87ed72

View File

@ -33,6 +33,8 @@ QURLDialog::QURLDialog(UrlView * form)
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);
}
@ -44,7 +46,6 @@ QURLDialog::~QURLDialog()
void QURLDialog::show()
{
QDialog::show();
urlED->setFocus();
}