diff options
author | Eike Rathke <erack@redhat.com> | 2017-09-25 13:20:57 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2017-09-25 13:21:05 +0200 |
commit | 65ec980667d290fd9cf0a9b119f52c86bccf17df (patch) | |
tree | 6887e7d3fc9fef816b1794091c91fa2ec3f17efe /sc | |
parent | bf0996d39cbb0162c037ae1c9037e8c0f9d5b0e7 (diff) |
Clarify comment of "copy"-ctor and operator=()
Change-Id: I64b5c1384c116ac659fe674adcda142eddf79d5e
Diffstat (limited to 'sc')
-rw-r--r-- | sc/inc/tokenarray.hxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sc/inc/tokenarray.hxx b/sc/inc/tokenarray.hxx index 53895cb66889..145972986cba 100644 --- a/sc/inc/tokenarray.hxx +++ b/sc/inc/tokenarray.hxx @@ -55,7 +55,8 @@ class SC_DLLPUBLIC ScTokenArray : public formula::FormulaTokenArray public: ScTokenArray(); - /// Assignment with references to FormulaToken entries (not copied!) + /** Assignment with incrementing references of FormulaToken entries + (not copied!) */ ScTokenArray( const ScTokenArray& ); virtual ~ScTokenArray() override; void ClearScTokenArray(); @@ -114,7 +115,8 @@ public: /// Assign XML string placeholder to the array void AssignXMLString( const OUString &rText, const OUString &rFormulaNmsp ); - /// Assignment with references to FormulaToken entries (not copied!) + /** Assignment with incrementing references of FormulaToken entries + (not copied!) */ ScTokenArray& operator=( const ScTokenArray& ); /** |