From 8f70b1fe6562378faefb612f4006545cdcf703ab Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 21 Oct 2014 19:13:42 +0900 Subject: Sort documentation list in increasing alphabetical order. Fixed KDE 2 handbook xml tags. This relates to bug 1859. Signed-off-by: Michele Calgaro --- parts/documentation/plugins/devhelp/docdevhelpplugin.cpp | 8 ++++---- parts/documentation/plugins/devhelp/docdevhelpplugin.h | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'parts/documentation/plugins/devhelp') diff --git a/parts/documentation/plugins/devhelp/docdevhelpplugin.cpp b/parts/documentation/plugins/devhelp/docdevhelpplugin.cpp index 4f2d50d6..5bdfa618 100644 --- a/parts/documentation/plugins/devhelp/docdevhelpplugin.cpp +++ b/parts/documentation/plugins/devhelp/docdevhelpplugin.cpp @@ -41,8 +41,8 @@ class DevHelpDocumentationCatalogItem: public DocumentationCatalogItem { public: DevHelpDocumentationCatalogItem(const TQString &devHelpFile, DocumentationPlugin* plugin, - TDEListView *parent, const TQString &name) - :DocumentationCatalogItem(plugin, parent, name), m_devHelpFile(devHelpFile) + TDEListView *parent, TDEListViewItem *after, const TQString &name) + :DocumentationCatalogItem(plugin, parent, after, name), m_devHelpFile(devHelpFile) { } DevHelpDocumentationCatalogItem(const TQString &devHelpFile, DocumentationPlugin* plugin, @@ -85,9 +85,9 @@ DocDevHelpPlugin::~DocDevHelpPlugin() { } -DocumentationCatalogItem* DocDevHelpPlugin::createCatalog(TDEListView* contents, const TQString& title, const TQString& url) +DocumentationCatalogItem* DocDevHelpPlugin::createCatalog(TDEListView* contents, TDEListViewItem *after, const TQString& title, const TQString& url) { - return new DevHelpDocumentationCatalogItem(url, this, contents, title); + return new DevHelpDocumentationCatalogItem(url, this, contents, after, title); } TQPair DocDevHelpPlugin::catalogLocatorProps() diff --git a/parts/documentation/plugins/devhelp/docdevhelpplugin.h b/parts/documentation/plugins/devhelp/docdevhelpplugin.h index 6436a1d8..19ff8a75 100644 --- a/parts/documentation/plugins/devhelp/docdevhelpplugin.h +++ b/parts/documentation/plugins/devhelp/docdevhelpplugin.h @@ -40,7 +40,7 @@ public: virtual void createTOC(DocumentationCatalogItem* item); - virtual DocumentationCatalogItem* createCatalog(TDEListView* contents, const TQString& title, const TQString& url); + virtual DocumentationCatalogItem* createCatalog(TDEListView* contents, TDEListViewItem *after, const TQString& title, const TQString& url); virtual bool needRefreshIndex(DocumentationCatalogItem* item); virtual void createIndex(IndexBox* index, DocumentationCatalogItem* item); -- cgit v1.2.3