diff options
author | Kohei Yoshida <kyoshida@novell.com> | 2010-12-17 01:59:24 -0500 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2010-12-17 01:59:24 -0500 |
commit | 79c8c0a5fa21da68e9b10dc4d1a89341e346c2bf (patch) | |
tree | 50b8b5ed5d4ce204353f5662badb3dec98752d89 /sc/inc/addincol.hxx | |
parent | b36b0e091f5d487be076e515000423059b9e4a9d (diff) |
Implemented ScMatrixRef using boost::intrusive_ptr.
Diffstat (limited to 'sc/inc/addincol.hxx')
-rw-r--r-- | sc/inc/addincol.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/addincol.hxx b/sc/inc/addincol.hxx index e59d076a7c10..5cc1e046b459 100644 --- a/sc/inc/addincol.hxx +++ b/sc/inc/addincol.hxx @@ -231,7 +231,7 @@ public: USHORT GetErrCode() const { return nErrCode; } BOOL HasString() const { return bHasString; } - BOOL HasMatrix() const { return ( xMatrix.Is() ); } + bool HasMatrix() const { return xMatrix.get(); } BOOL HasVarRes() const { return ( xVarRes.is() ); } double GetValue() const { return fValue; } const String& GetString() const { return aString; } |