summaryrefslogtreecommitdiff
path: root/sc/source/ui/formdlg/formula.cxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-03-08 10:54:36 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-03-08 10:54:36 +0000
commit5e8a6935cee4fcba19da2503def497d07f34146a (patch)
tree7f712be006d6d5afd2114021e72af8ac46a61240 /sc/source/ui/formdlg/formula.cxx
parent1a36d82dca9f3efd07a378f82da77c2c01ed5538 (diff)
INTEGRATION: CWS cac (1.7.174); FILE MERGED
2003/11/05 19:01:59 er 1.7.174.1: #i4070# ScFuncDesc const correctness
Diffstat (limited to 'sc/source/ui/formdlg/formula.cxx')
-rw-r--r--sc/source/ui/formdlg/formula.cxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/sc/source/ui/formdlg/formula.cxx b/sc/source/ui/formdlg/formula.cxx
index b3e86b5908c0..83c28e27ad03 100644
--- a/sc/source/ui/formdlg/formula.cxx
+++ b/sc/source/ui/formdlg/formula.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: formula.cxx,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: rt $ $Date: 2004-01-07 15:54:40 $
+ * last change: $Author: hr $ $Date: 2004-03-08 11:54:36 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -550,7 +550,7 @@ void ScFormulaDlg::FillControls()
aFormula.AppendAscii(RTL_CONSTASCII_STRINGPARAM( " )" ));
DeleteArgs();
- ScFuncDesc* pOldFuncDesc=pFuncDesc;
+ const ScFuncDesc* pOldFuncDesc=pFuncDesc;
BOOL bTestFlag=FALSE;
if ( ScFormulaUtil::GetNextFunc( aFormula, FALSE,
@@ -766,7 +766,7 @@ IMPL_LINK( ScFormulaDlg, BtnHdl, PushButton*, pBtn )
else if ( pBtn == &aBtnForward )
{
//@pMEdit->GrabFocus(); // Damit die Selektion auch angezeigt wird.
- ScFuncDesc* pDesc =pScFuncPage->GetFuncDesc(
+ const ScFuncDesc* pDesc =pScFuncPage->GetFuncDesc(
pScFuncPage->GetFunction() );
if(pDesc==pFuncDesc || !pScFuncPage->IsVisible())
@@ -796,7 +796,7 @@ IMPL_LINK( ScFormulaDlg, BtnHdl, PushButton*, pBtn )
// Funktionen fuer 1. Seite
// --------------------------------------------------------------------------
-void ScFormulaDlg::ResizeArgArr( ScFuncDesc* pNewFunc )
+void ScFormulaDlg::ResizeArgArr( const ScFuncDesc* pNewFunc )
{
if ( pFuncDesc != pNewFunc )
{
@@ -833,7 +833,7 @@ void ScFormulaDlg::UpdateFunctionDesc()
if ( (pScFuncPage->GetFunctionEntryCount() > 0)
&& (pScFuncPage->GetFunction() != LISTBOX_ENTRY_NOTFOUND) )
{
- ScFuncDesc* pDesc =pScFuncPage->GetFuncDesc(
+ const ScFuncDesc* pDesc =pScFuncPage->GetFuncDesc(
pScFuncPage->GetFunction() );
if (pDesc)
{
@@ -871,7 +871,7 @@ IMPL_LINK( ScFormulaDlg, DblClkHdl, ScFuncPage*, pLb )
USHORT nFunc = pScFuncPage->GetFunction();
// ex-UpdateLRUList
- ScFuncDesc* pDesc = pScFuncPage->GetFuncDesc(nFunc);
+ const ScFuncDesc* pDesc = pScFuncPage->GetFuncDesc(nFunc);
if (pDesc && pDesc->nFIndex!=0)
pScMod->InsertEntryToLRUList(pDesc->nFIndex);
@@ -1929,7 +1929,7 @@ IMPL_LINK( ScFormulaDlg, FuncSelHdl, ScFuncPage*, pLb )
if ( (pScFuncPage->GetFunctionEntryCount() > 0)
&& (pScFuncPage->GetFunction() != LISTBOX_ENTRY_NOTFOUND) )
{
- ScFuncDesc* pDesc =pScFuncPage->GetFuncDesc(
+ const ScFuncDesc* pDesc =pScFuncPage->GetFuncDesc(
pScFuncPage->GetFunction() );
if(pDesc!=pFuncDesc) aBtnForward.Enable(TRUE); //new
@@ -2050,7 +2050,7 @@ String ScFormulaDlg::RepairFormula(const String& aFormula)
aResult+=aString;
}
- ScFuncDesc* pDesc= pFuncMgr->Get(aString);
+ const ScFuncDesc* pDesc= pFuncMgr->Get(aString);
SaveLRUEntry(pDesc); //! is this necessary?? (EnterData updates the list)
@@ -2067,7 +2067,7 @@ void ScFormulaDlg::HighlightFunctionParas(const String& aFormula)
ShowReference(aFormula);
}
-void ScFormulaDlg::SaveLRUEntry(ScFuncDesc* pFuncDesc)
+void ScFormulaDlg::SaveLRUEntry(const ScFuncDesc* pFuncDesc)
{
if (pFuncDesc && pFuncDesc->nFIndex!=0)
{