diff options
author | Eike Rathke <erack@redhat.com> | 2015-02-11 21:47:23 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2015-02-11 23:47:08 +0100 |
commit | cf3f1d8dfeb45249eb60a30dba3243fe9a4a65e5 (patch) | |
tree | 5f5c7459fdd08e053ce6d3f96a0e7e7d1d4b06dc /sc/inc/scmatrix.hxx | |
parent | 22fe5da5423b39908d78825185dc5991d39385d1 (diff) |
add ScMatrix::IsEmptyResult() for tdf#39316 fix preparation
Change-Id: I9f2a3e6fa9f4ef43df672661afef996269b90a7a
Diffstat (limited to 'sc/inc/scmatrix.hxx')
-rw-r--r-- | sc/inc/scmatrix.hxx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sc/inc/scmatrix.hxx b/sc/inc/scmatrix.hxx index c4b924d4075d..255d45219017 100644 --- a/sc/inc/scmatrix.hxx +++ b/sc/inc/scmatrix.hxx @@ -321,13 +321,16 @@ public: /// @return <TRUE/> if string or empty or empty path, in fact non-value. bool IsString( SCSIZE nC, SCSIZE nR ) const; - /// @return <TRUE/> if empty or empty path. + /// @return <TRUE/> if empty or empty cell or empty result, not empty path. bool IsEmpty( SCSIZE nC, SCSIZE nR ) const; - /// @return <TRUE/> if empty, not empty result or empty path. + /// @return <TRUE/> if empty cell, not empty or empty result or empty path. bool IsEmptyCell( SCSIZE nC, SCSIZE nR ) const; - /// @return <TRUE/> if empty path. + /// @return <TRUE/> if empty result, not empty or empty cell or empty path. + bool IsEmptyResult( SCSIZE nC, SCSIZE nR ) const; + + /// @return <TRUE/> if empty path, not empty or empty cell or empty result. bool IsEmptyPath( SCSIZE nC, SCSIZE nR ) const; /// @return <TRUE/> if value or boolean. |