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() {