From f6f73d2e40712dadf69cd73a34d006988669978c Mon Sep 17 00:00:00 2001 From: Eike Rathke Date: Fri, 8 Jan 2016 23:12:32 +0100 Subject: Function Wizard: exclude functions with hidden flag from lists Change-Id: Ia209bb44cef5969e5c9cd360aa5725708d6bdec5 --- formula/source/ui/dlg/funcpage.cxx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/formula/source/ui/dlg/funcpage.cxx b/formula/source/ui/dlg/funcpage.cxx index 7b83298fd658..d629ca3bea3f 100644 --- a/formula/source/ui/dlg/funcpage.cxx +++ b/formula/source/ui/dlg/funcpage.cxx @@ -108,8 +108,9 @@ void FuncPage::impl_addFunctions(const IFunctionCategory* _pCategory) for(sal_uInt32 i = 0 ; i < nCount; ++i) { TFunctionDesc pDesc(_pCategory->getFunction(i)); - m_pLbFunction->SetEntryData( - m_pLbFunction->InsertEntry(pDesc->getFunctionName() ),const_cast(pDesc) ); + if (!pDesc->isHidden()) + m_pLbFunction->SetEntryData( + m_pLbFunction->InsertEntry(pDesc->getFunctionName() ),const_cast(pDesc) ); } } -- cgit /allotropia/zeta-7-4'>distro/allotropia/zeta-7-4 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/svx/doc
AgeCommit message (Expand)Author