Kaydet (Commit) e662ffc9 authored tarafından Noel Grandin's avatar Noel Grandin

sal_Bool->bool

Change-Id: If00756cdecc19f5a0159921833a24490b9d70450
üst 1bd50b00
......@@ -258,9 +258,9 @@ ScFormulaDlg::~ScFormulaDlg()
} // if (pData) // wird nicht ueber Close zerstoert;
}
sal_Bool ScFormulaDlg::IsInputHdl(ScInputHandler* pHdl)
bool ScFormulaDlg::IsInputHdl(ScInputHandler* pHdl)
{
sal_Bool bAlive = false;
bool bAlive = false;
// gehoert der InputHandler zu irgendeiner ViewShell ?
......@@ -269,7 +269,7 @@ sal_Bool ScFormulaDlg::IsInputHdl(ScInputHandler* pHdl)
while ( pSh && !bAlive )
{
if (((ScTabViewShell*)pSh)->GetInputHandler() == pHdl)
bAlive = sal_True;
bAlive = true;
pSh = SfxViewShell::GetNext( *pSh, &aScType );
}
......
......@@ -105,7 +105,7 @@ protected:
virtual void RefInputStart( formula::RefEdit* pEdit, formula::RefButton* pButton = NULL );
void SaveLRUEntry(const ScFuncDesc* pFuncDesc);
sal_Bool IsInputHdl(ScInputHandler* pHdl);
bool IsInputHdl(ScInputHandler* pHdl);
ScInputHandler* GetNextInputHandler(ScDocShell* pDocShell,PtrTabViewShell* ppViewSh);
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment