From kde-commits Sat Feb 21 14:51:25 2009 From: =?utf-8?q?Dar=C3=ADo=20Andr=C3=A9s=20Rodr=C3=ADguez?= X-MARC-Message: https://marc.info/?l=kde-commits&m=123522789201412 SVN commit 929527 by darioandres: Fix the crash on kppp -c . It isn't the best fix (strange code) but at least it won't crash BUG: 176028 M +2 -1 debug.cpp --- trunk/KDE/kdenetwork/kppp/debug.cpp #929526:929527 @@ -81,7 +81,8 @@ void DebugWidget::hideEvent(QHideEvent *) { assert(p_kppp); - p_kppp->con->debug->setChecked(false); + //This causes a crash when launching kppp -c BKO176028 + //p_kppp->con->debug->setChecked(false); } void DebugWidget::clear() {