diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-03-26 12:00:43 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-03-26 15:35:04 -0400 |
commit | 0b0e7ca9b3bae3b3295da33e5980f3f4c6a5f532 (patch) | |
tree | 352d493e794127383ea9b75faf5a7249fbdf3a15 /sc/inc/cell.hxx | |
parent | 0fb1409d9682f118d28f89e27bba7887882dad91 (diff) |
Add ScRefCellValue, which is ScCellValue without copied value.
It directly points to the original cell value instance.
Change-Id: I638ec8b931873d237871b6d8fa9f0e1277520d0f
Diffstat (limited to 'sc/inc/cell.hxx')
-rw-r--r-- | sc/inc/cell.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sc/inc/cell.hxx b/sc/inc/cell.hxx index 236ad4301df4..0b78f9878cac 100644 --- a/sc/inc/cell.hxx +++ b/sc/inc/cell.hxx @@ -175,6 +175,7 @@ public: inline void SetString( const rtl::OUString& rString ) { maString = rString; } inline const rtl::OUString& GetString() const { return maString; } + const OUString* GetStringPtr() const { return &maString; } private: rtl::OUString maString; |