Removed the single-parameter version of IsBoolean().
This commit is contained in:
parent
277c00607d
commit
773acf21c2
2 changed files with 0 additions and 15 deletions
|
@ -373,9 +373,6 @@ public:
|
|||
/// @return <TRUE/> if value or boolean or empty or empty path.
|
||||
BOOL IsValueOrEmpty( SCSIZE nC, SCSIZE nR ) const;
|
||||
|
||||
/// @return <TRUE/> if boolean.
|
||||
BOOL IsBoolean( SCSIZE nIndex ) const;
|
||||
|
||||
/// @return <TRUE/> if boolean.
|
||||
BOOL IsBoolean( SCSIZE nC, SCSIZE nR ) const;
|
||||
|
||||
|
|
|
@ -205,7 +205,6 @@ public:
|
|||
BOOL IsValue( SCSIZE nC, SCSIZE nR ) const;
|
||||
BOOL IsValueOrEmpty( SCSIZE nIndex ) const;
|
||||
BOOL IsValueOrEmpty( SCSIZE nC, SCSIZE nR ) const;
|
||||
BOOL IsBoolean( SCSIZE nIndex ) const;
|
||||
BOOL IsBoolean( SCSIZE nC, SCSIZE nR ) const;
|
||||
BOOL IsNumeric() const;
|
||||
void MatCopy(ScMatrixImpl& mRes) const;
|
||||
|
@ -665,12 +664,6 @@ BOOL ScMatrixImpl::IsValueOrEmpty( SCSIZE nC, SCSIZE nR ) const
|
|||
}
|
||||
return false;
|
||||
}
|
||||
BOOL ScMatrixImpl::IsBoolean( SCSIZE nIndex ) const
|
||||
{
|
||||
SCSIZE nC, nR;
|
||||
CalcPosition(nIndex, nC, nR);
|
||||
return IsBoolean(nC, nR);
|
||||
}
|
||||
|
||||
BOOL ScMatrixImpl::IsBoolean( SCSIZE nC, SCSIZE nR ) const
|
||||
{
|
||||
|
@ -1047,11 +1040,6 @@ BOOL ScMatrix::IsValueOrEmpty( SCSIZE nC, SCSIZE nR ) const
|
|||
return pImpl->IsValueOrEmpty(nC, nR);
|
||||
}
|
||||
|
||||
BOOL ScMatrix::IsBoolean( SCSIZE nIndex ) const
|
||||
{
|
||||
return pImpl->IsBoolean(nIndex);
|
||||
}
|
||||
|
||||
BOOL ScMatrix::IsBoolean( SCSIZE nC, SCSIZE nR ) const
|
||||
{
|
||||
return pImpl->IsBoolean(nC, nR);
|
||||
|
|
Loading…
Reference in a new issue