Kaydet (Commit) 225e4ac6 authored tarafından Markus Mohrhard's avatar Markus Mohrhard

prevent copy c'tor and operator=

Change-Id: Ibf45ab23a2272043729e7404de89ad514735bf06
üst b0255df4
...@@ -98,6 +98,11 @@ friend void ScAttrArray_IterGetNumberFormat( sal_uLong& nFormat, ...@@ -98,6 +98,11 @@ friend void ScAttrArray_IterGetNumberFormat( sal_uLong& nFormat,
void RemoveCellCharAttribs( SCROW nStartRow, SCROW nEndRow, void RemoveCellCharAttribs( SCROW nStartRow, SCROW nEndRow,
const ScPatternAttr* pPattern, ScEditDataArray* pDataArray ); const ScPatternAttr* pPattern, ScEditDataArray* pDataArray );
// prevent the copy c'tor and operator=
// this is just to prevent accidental use
ScAttrArray(const ScAttrArray&);
ScAttrArray& operator=(const ScAttrArray&);
public: public:
ScAttrArray( SCCOL nNewCol, SCTAB nNewTab, ScDocument* pDoc ); ScAttrArray( SCCOL nNewCol, SCTAB nNewTab, ScDocument* pDoc );
~ScAttrArray(); ~ScAttrArray();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment