diff options
author | Kohei Yoshida <kyoshida@novell.com> | 2010-11-07 00:15:52 -0400 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2010-11-07 00:15:52 -0400 |
commit | 394aa60d678bef918c906cc780724ba79304103f (patch) | |
tree | be6d753d5149e37a2e12897e5438f6fa71e4e097 /sc/inc/scmatrix.hxx | |
parent | 9c9e4c463f154cacfc7d3d2cf1150dda44a4f4e6 (diff) |
More elimination of single-parameter methods from ScMatrix.
Diffstat (limited to 'sc/inc/scmatrix.hxx')
-rw-r--r-- | sc/inc/scmatrix.hxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sc/inc/scmatrix.hxx b/sc/inc/scmatrix.hxx index d4f96d6a7341..fd665919d845 100644 --- a/sc/inc/scmatrix.hxx +++ b/sc/inc/scmatrix.hxx @@ -298,9 +298,7 @@ public: void PutEmpty( SCSIZE nC, SCSIZE nR); /// Jump FALSE without path void PutEmptyPath( SCSIZE nC, SCSIZE nR); - void PutEmptyPath( SCSIZE nIndex); void PutError( USHORT nErrorCode, SCSIZE nC, SCSIZE nR ); - void PutError( USHORT nErrorCode, SCSIZE nIndex ); void PutBoolean( bool bVal, SCSIZE nC, SCSIZE nR); void PutBoolean( bool bVal, SCSIZE nIndex); @@ -319,8 +317,6 @@ public: @returns 0 if no error or string element, else one of err... constants */ USHORT GetErrorIfNotString( SCSIZE nC, SCSIZE nR) const { return IsValue( nC, nR) ? GetError( nC, nR) : 0; } - USHORT GetErrorIfNotString( SCSIZE nIndex) const - { return IsValue( nIndex) ? GetError( nIndex) : 0; } /// @return 0.0 if empty or empty path, else value or DoubleError. double GetDouble( SCSIZE nC, SCSIZE nR) const; |