CVS commit by dymo: Disabled old documentation part by setting X-KDevelop-Version=0 in .desktop file. This will prevent KDevelop from loading it. Did not removed yet in case somebody really needs it's few features not implemented in new docviewer. M +0 -1 Makefile.am 1.26 M +1 -1 kdevdoctreeview.desktop 1.38 M +3 -2 chm/chm.cpp 1.2 --- kdevelop/parts/doctreeview/chm/chm.cpp #1.1:1.2 @@ -136,6 +136,7 @@ void ChmProtocol::get( const KURL& url ) //kdDebug() << "Emitting mimetype " << result->mimeType() << endl; //mimeType( result->mimeType() ); - data(output.local8Bit()); - processedSize(output.length()); + QCString output1 = (QCString)(output.latin1()); + data(output1); + processedSize(output1.length()); } else { int offset = m_dirMap[path].offset; --- kdevelop/parts/doctreeview/Makefile.am #1.25:1.26 @@ -1,5 +1,4 @@ # Here resides the doc tree view part. -SUBDIRS = chm INCLUDES = -I$(top_srcdir)/lib/interfaces -I$(top_srcdir)/lib/util -I$(top_srcdir)/lib/widgets $(all_includes) --- kdevelop/parts/doctreeview/kdevdoctreeview.desktop #1.37:1.38 @@ -51,4 +51,4 @@ ServiceTypes=KDevelop/Plugin X-KDE-Library=libkdevdoctreeview -X-KDevelop-Version=1 +X-KDevelop-Version=0 X-KDevelop-Scope=Global