diff options
author | Kohei Yoshida <kohei.yoshida@suse.com> | 2012-02-03 11:28:45 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@suse.com> | 2012-02-04 00:25:50 -0500 |
commit | e67a43b29184608a2ee2a2205b8839b0962c81b9 (patch) | |
tree | fe7c5c4d6a9fcaf0d024efce03aed831bf3a7a8a /sc/inc/chgtrack.hxx | |
parent | 697743161a6047902ee880851b23c9aef1bfa392 (diff) |
String is now eradicated from the change track code.
Diffstat (limited to 'sc/inc/chgtrack.hxx')
-rw-r--r-- | sc/inc/chgtrack.hxx | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/sc/inc/chgtrack.hxx b/sc/inc/chgtrack.hxx index c4cb308e191f..9564e338eb51 100644 --- a/sc/inc/chgtrack.hxx +++ b/sc/inc/chgtrack.hxx @@ -396,7 +396,8 @@ public: rtl::OUString& rStr, ScDocument* pDoc, bool bSplitRange = false, bool bWarning = true ) const; - virtual void GetRefString( String&, ScDocument*, bool bFlag3D = false ) const; + virtual void GetRefString( + rtl::OUString& rStr, ScDocument* pDoc, bool bFlag3D = false ) const; // for DocumentMerge set old date of the other // action, fetched by GetDateTimeUTC @@ -644,7 +645,8 @@ public: rtl::OUString& rStr, ScDocument* pDoc, bool bSplitRange = false, bool bWarning = true ) const; - virtual void GetRefString( String&, ScDocument*, bool bFlag3D = false ) const; + virtual void GetRefString( + rtl::OUString& rStr, ScDocument* pDoc, bool bFlag3D = false ) const; }; @@ -814,7 +816,7 @@ public: { pPrevContent = p; } // don't use: - // assigns String / creates forumula cell + // assigns string / creates forumula cell void SetOldValue( const rtl::OUString& rOld, ScDocument* pDoc ); void SetNewValue( const rtl::OUString& rNew, ScDocument* pDoc ); @@ -825,7 +827,8 @@ public: virtual void GetDescription( rtl::OUString& rStr, ScDocument* pDoc, bool bSplitRange = false, bool bWarning = true ) const; - virtual void GetRefString( String&, ScDocument*, bool bFlag3D = false ) const; + virtual void GetRefString( + rtl::OUString& rStr, ScDocument* pDoc, bool bFlag3D = false ) const; static ScChangeActionContentCellType GetContentCellType( const ScBaseCell* ); @@ -1173,8 +1176,8 @@ public: sal_uLong nOldFormat = 0, sal_uLong nNewFormat = 0 ); - // Only use the following two if there is no different solution! - // (Assign String for NewValue or creation of a formula respectively) + // Only use the following two if there is no different solution! (Assign + // string for NewValue or creation of a formula respectively) SC_DLLPUBLIC void AppendInsert( const ScRange& ); |