whitespace only.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_5_X@22725 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2008-01-31 12:24:06 +00:00
parent a06115b1a1
commit b5fd550d07

View File

@ -30,9 +30,12 @@ QURLDialog::QURLDialog(UrlView * form)
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(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);
}