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

sal_Bool->bool

Change-Id: I138508cae0e342f7b259607ffb0403d985103326
üst 58c957e3
......@@ -252,7 +252,7 @@ Rectangle ScAccessiblePreviewCell::GetBoundingBox() const throw (uno::RuntimeExc
return aCellRect;
}
sal_Bool ScAccessiblePreviewCell::IsDefunc(
bool ScAccessiblePreviewCell::IsDefunc(
const uno::Reference<XAccessibleStateSet>& rxParentStates)
{
return ScAccessibleContextBase::IsDefunc() || (mpDoc == NULL) || (mpViewShell == NULL) || !getAccessibleParent().is() ||
......@@ -265,13 +265,13 @@ bool ScAccessiblePreviewCell::IsEditable(
return false;
}
sal_Bool ScAccessiblePreviewCell::IsOpaque(
bool ScAccessiblePreviewCell::IsOpaque(
const uno::Reference<XAccessibleStateSet>& /* rxParentStates */)
{
// test whether there is a background color
//! could be moved to ScAccessibleCellBase
sal_Bool bOpaque(sal_True);
bool bOpaque(true);
if (mpDoc)
{
const SvxBrushItem* pItem = (const SvxBrushItem*)mpDoc->GetAttr(
......
......@@ -95,13 +95,13 @@ private:
accessibility::AccessibleTextHelper* mpTextHelper;
sal_Bool IsDefunc(
bool IsDefunc(
const com::sun::star::uno::Reference<
::com::sun::star::accessibility::XAccessibleStateSet>& rxParentStates);
virtual bool IsEditable(
const com::sun::star::uno::Reference<
::com::sun::star::accessibility::XAccessibleStateSet>& rxParentStates);
sal_Bool IsOpaque(
bool IsOpaque(
const com::sun::star::uno::Reference<
::com::sun::star::accessibility::XAccessibleStateSet>& rxParentStates);
......
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