SVN commit 1025800 by orlovich: Fix show()/hide() M +4 -4 khtml_part.cpp --- branches/KDE/4.3/kdelibs/khtml/khtml_part.cpp #1025799:1025800 @@ -5527,14 +5527,14 @@ void KHTMLPart::show() { - if ( d->m_view ) - d->m_view->show(); + if ( widget() ) + widget()->show(); } void KHTMLPart::hide() { - if ( d->m_view ) - d->m_view->hide(); + if ( widget() ) + widget()->hide(); } DOM::Node KHTMLPart::nodeUnderMouse() const