From kde-commits Mon Feb 02 21:28:55 2009 From: =?utf-8?q?Dar=C3=ADo=20Andr=C3=A9s=20Rodr=C3=ADguez?= X-MARC-Message: https://marc.info/?l=kde-commits&m=123361014311866 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);