SVN commit 886322 by finex: Fixed layout of "add new phone number" dialog. M +5 -3 edit.cpp --- trunk/KDE/kdenetwork/kppp/edit.cpp #886321:886322 @@ -1235,11 +1235,13 @@ setMainWidget(hbox); hboxLayout2->setSpacing(KDialog::spacingHint()); + + QLabel *lbl_le = new QLabel(i18n("Enter a phone number:")); + hboxLayout2->addWidget(lbl_le); - new QLabel(i18n("Enter a phone number:"), hbox); - - le = newLineEdit(14, hbox); + QLineEdit *le = new QLineEdit; le->setMinimumWidth(125); + hboxLayout2->addWidget(le); connect(le, SIGNAL(textChanged(const QString &)), this, SLOT(textChanged(const QString &)));