diff options
author | Eike Rathke <erack@redhat.com> | 2015-12-18 12:25:54 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2015-12-18 12:43:37 +0100 |
commit | 6e80c6b9d40408a745ab0ced5d217118985e4079 (patch) | |
tree | 773674ffc7b1501745f90d2024f8af146900f156 /formula/source | |
parent | 1ea4a61dc0b71892f19d961a4b678c10965b69a2 (diff) |
tdf#96366 disable treeview results until fix available
Since f82d89f35207fc1cfc00ad5cd914b74c55c3e3d2 EditThisFunc() and
EditNextFunc() are used to iterate through the formula to obtain
expression results to display in the treeview. Calling the Edit...()
functions spoils about everything as it messes around with the edit
state. As the name suggests..
Change-Id: I8b35d85b7bbf8821b5a995e84f9dd88a0f6f00b9
(cherry picked from commit 8217ddbfc863dd9b313d6b5eaecb1877e42b2d02)
Diffstat (limited to 'formula/source')
-rw-r--r-- | formula/source/ui/dlg/formula.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/formula/source/ui/dlg/formula.cxx b/formula/source/ui/dlg/formula.cxx index 0448045e1374..3c1523cdfcc0 100644 --- a/formula/source/ui/dlg/formula.cxx +++ b/formula/source/ui/dlg/formula.cxx @@ -695,6 +695,8 @@ void FormulaDlg_Impl::MakeTree(StructPage* _pTree,SvTreeListEntry* pParent,Formu if (bCalcSubformula) { +/* FIXME: tdf#96366 this simply does not work, disable until solved. */ +#if 0 OUString aStr; OUString aEquals(" = "); @@ -717,6 +719,7 @@ void FormulaDlg_Impl::MakeTree(StructPage* _pTree,SvTreeListEntry* pParent,Formu m_pWndResult->SetText( aStr ); aStr = m_pWndResult->GetText(); pStructPage->GetTlbStruct()->SetEntryText(pEntry,aResult + aEquals + aStr); +#endif } --Count; |