diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2014-10-21 19:13:42 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2014-10-21 19:13:42 +0900 |
commit | 8f70b1fe6562378faefb612f4006545cdcf703ab (patch) | |
tree | 19256e4ff96aa6dfb9d73313ba91c87cb332cca1 /parts/documentation/documentation_part.cpp | |
parent | 847b6192a9eee538a6d62a0cbbbfffd5270744ac (diff) | |
download | tdevelop-8f70b1fe6562378faefb612f4006545cdcf703ab.tar.gz tdevelop-8f70b1fe6562378faefb612f4006545cdcf703ab.zip |
Sort documentation list in increasing alphabetical order.
Fixed KDE 2 handbook xml tags. This relates to bug 1859.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'parts/documentation/documentation_part.cpp')
-rw-r--r-- | parts/documentation/documentation_part.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/parts/documentation/documentation_part.cpp b/parts/documentation/documentation_part.cpp index 75bb7c13..c68add0e 100644 --- a/parts/documentation/documentation_part.cpp +++ b/parts/documentation/documentation_part.cpp @@ -98,7 +98,7 @@ DocumentationPart::DocumentationPart(TQObject *parent, const char *name, const T TQWhatsThis::add(m_widget, i18n("<b>Documentation browser</b><p>" "The documentation browser gives access to various " - "documentation sources (TQt DCF, Doxygen, KDoc, KDevelopTOC and DevHelp " + "documentation sources (TQt DCF, Doxygen, KDoc, TDevelopTOC and DevHelp " "documentation) and the TDevelop manuals. It also provides documentation index " "and full text search capabilities.")); @@ -107,7 +107,7 @@ DocumentationPart::DocumentationPart(TQObject *parent, const char *name, const T setupActions(); - TQTimer::singleShot(0, this, TQT_SLOT(init())); + TQTimer::singleShot(5, this, TQT_SLOT(init())); new KDevDocumentationIface(this); } @@ -135,7 +135,6 @@ void DocumentationPart::loadDocumentationPlugins() docPluginService = *serviceIt; kdDebug() << "DocumentationPart::loadDocumentationPlugins: creating plugin" << docPluginService->name() << endl; - int error; DocumentationPlugin *docPlugin = KParts::ComponentFactory ::createInstanceFromService<DocumentationPlugin>(docPluginService, 0, |