diff options
author | Michele Calgaro <[email protected]> | 2014-10-23 12:00:13 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2014-10-23 12:00:13 +0900 |
commit | 3a0f0172fb45826b6de854bd4f7c5a064b3c1cb5 (patch) | |
tree | 8de17bd08e5b6445a0355fccee7fb552b31a82ca /parts/documentation/editcatalogdlg.cpp | |
parent | 0ffe0dfb29f3be5bb87b977b3a8ae1d9cd4346d5 (diff) | |
download | tdevelop-3a0f0172fb45826b6de854bd4f7c5a064b3c1cb5.tar.gz tdevelop-3a0f0172fb45826b6de854bd4f7c5a064b3c1cb5.zip |
Removed 'CustomDocumentationTitles' option and made it active by default for all plugins. This relates to bug 1859.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'parts/documentation/editcatalogdlg.cpp')
-rw-r--r-- | parts/documentation/editcatalogdlg.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/parts/documentation/editcatalogdlg.cpp b/parts/documentation/editcatalogdlg.cpp index 8bdc19d5..25a5b588 100644 --- a/parts/documentation/editcatalogdlg.cpp +++ b/parts/documentation/editcatalogdlg.cpp @@ -32,11 +32,8 @@ EditCatalogDlg::EditCatalogDlg(DocumentationPlugin *plugin, TQWidget* parent, const char* name, bool modal, WFlags fl) :EditCatalogBase(parent,name, modal,fl), m_plugin(plugin) { - if (m_plugin->hasCapability(DocumentationPlugin::CustomDocumentationTitles)) - { - titleLabel->setEnabled(true); - titleEdit->setEnabled(true); - } + titleLabel->setEnabled(true); + titleEdit->setEnabled(true); locationURL->setMode(m_plugin->catalogLocatorProps().first); locationURL->setFilter(m_plugin->catalogLocatorProps().second); } |