summaryrefslogtreecommitdiffstats
path: root/parts/documentation/docprojectconfigwidget.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2014-10-30 14:50:07 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2014-10-30 14:50:07 +0900
commitd676f93b5f3a7481fc0588f087bef418879e6f78 (patch)
tree8bcbe99d2f62e6216afa3bd9b56c99a2eb163d07 /parts/documentation/docprojectconfigwidget.cpp
parent565f0ae626aeff1ec26ce379abe2c3838b54cdf6 (diff)
downloadtdevelop-d676f93b5f3a7481fc0588f087bef418879e6f78.tar.gz
tdevelop-d676f93b5f3a7481fc0588f087bef418879e6f78.zip
Added backend logic for allowing the user to manually update the Documentation Plugin lists. GUI part still to be done.
In the process, fixed some bugs related to deallocation and reinitialization of documentation catalogs and project catalogs. This relates to bug 1859. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'parts/documentation/docprojectconfigwidget.cpp')
-rw-r--r--parts/documentation/docprojectconfigwidget.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/parts/documentation/docprojectconfigwidget.cpp b/parts/documentation/docprojectconfigwidget.cpp
index a37ad5cb..205bb4f5 100644
--- a/parts/documentation/docprojectconfigwidget.cpp
+++ b/parts/documentation/docprojectconfigwidget.cpp
@@ -138,6 +138,8 @@ void DocProjectConfigWidget::accept()
m_part->m_projectDocumentationPlugin = 0;
}
m_part->m_projectDocumentationPlugin = plugin->projectDocumentationPlugin(DocumentationPlugin::APIDocs);
+ if (!m_part->m_projectDocumentationPlugin) // In case the plugin does not support APIDocs project documentation
+ return;
m_part->m_projectDocumentationPlugin->init(m_part->m_widget->contents(), m_part->m_widget->index(), catalogURL->url());
m_part->saveProjectDocumentationInfo();