diff options
Diffstat (limited to 'cui/source')
-rw-r--r-- | cui/source/inc/treeopt.hxx | 3 | ||||
-rw-r--r-- | cui/source/options/treeopt.cxx | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/cui/source/inc/treeopt.hxx b/cui/source/inc/treeopt.hxx index 96267575333a..403250eabe55 100644 --- a/cui/source/inc/treeopt.hxx +++ b/cui/source/inc/treeopt.hxx @@ -81,7 +81,6 @@ struct OptionsNode { OUString m_sId; OUString m_sLabel; - OUString m_sPageURL; bool m_bAllModules; std::vector< std::unique_ptr<OptionsLeaf> > m_aLeaves; std::vector< std::vector< std::unique_ptr<OptionsLeaf> > > @@ -89,11 +88,9 @@ struct OptionsNode OptionsNode( const OUString& rId, const OUString& rLabel, - const OUString& rPageURL, bool bAllModules ) : m_sId( rId ), m_sLabel( rLabel ), - m_sPageURL( rPageURL ), m_bAllModules( bAllModules ) {} }; diff --git a/cui/source/options/treeopt.cxx b/cui/source/options/treeopt.cxx index 909150c42465..d149d2e97975 100644 --- a/cui/source/options/treeopt.cxx +++ b/cui/source/options/treeopt.cxx @@ -1859,7 +1859,7 @@ VectorOfNodes OfaTreeOptionsDialog::LoadNodes( OUString sTemp = getGroupName( sLabel, !rExtensionId.isEmpty() ); if ( !sTemp.isEmpty() ) sLabel = sTemp; - std::unique_ptr<OptionsNode> pNode(new OptionsNode(sNodeId, sLabel, sPageURL, bAllModules)); + std::unique_ptr<OptionsNode> pNode(new OptionsNode(sNodeId, sLabel, bAllModules)); if ( rExtensionId.isEmpty() && !isNodeActive( pNode.get(), pModule ) ) { |