SVN commit 920415 by darioandres: Fix crash (it was creating a function-scope object instead of initializing the class one) BUG: 176645 M +1 -1 edit.cpp --- trunk/KDE/kdenetwork/kppp/edit.cpp #920414:920415 @@ -1239,7 +1239,7 @@ QLabel *lbl_le = new QLabel(i18n("Enter a phone number:")); hboxLayout2->addWidget(lbl_le); - QLineEdit *le = new QLineEdit; + le = new QLineEdit(); le->setMinimumWidth(125); hboxLayout2->addWidget(le);