SVN commit 1184001 by dfaure: oops, instanciate the derived class, not the base class. M +1 -1 khtml_part.cpp --- trunk/KDE/kdelibs/khtml/khtml_part.cpp #1184000:1184001 @@ -236,7 +236,7 @@ d->m_hostExtension = new KHTMLPartBrowserHostExtension( this ); d->m_statusBarExtension = new KParts::StatusBarExtension( this ); d->m_scriptableExtension = new KJS::KHTMLPartScriptable( this ); - new KParts::TextExtension( this ); + new KHTMLTextExtension( this ); d->m_statusBarPopupLabel = 0L; d->m_openableSuppressedPopups = 0;