summaryrefslogtreecommitdiffstats
path: root/sc/inc/column.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@suse.com>2012-01-20 12:36:07 -0500
committerKohei Yoshida <kohei.yoshida@suse.com>2012-01-20 17:07:20 -0500
commitbd161794ac844891f18660c292387dd449cb4c71 (patch)
tree93ef13f180de193b9831509bb9df155e96341075 /sc/inc/column.hxx
parentReplace open-coded array with std::vector in ScColumn. (diff)
downloadcore-bd161794ac844891f18660c292387dd449cb4c71.tar.gz
core-bd161794ac844891f18660c292387dd449cb4c71.zip
Added 'm' prefix for a data member.
Diffstat (limited to 'sc/inc/column.hxx')
-rw-r--r--sc/inc/column.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/column.hxx b/sc/inc/column.hxx
index 5000bae9de48..e00aa64275ef 100644
--- a/sc/inc/column.hxx
+++ b/sc/inc/column.hxx
@@ -106,7 +106,7 @@ private:
SCCOL nCol;
SCTAB nTab;
- std::vector<ColEntry> aItems;
+ std::vector<ColEntry> maItems;
ScAttrArray* pAttrArray;
ScDocument* pDocument;
@@ -256,7 +256,7 @@ public:
double GetValue( SCROW nRow ) const;
void GetFormula( SCROW nRow, rtl::OUString& rFormula ) const;
CellType GetCellType( SCROW nRow ) const;
- SCSIZE GetCellCount() const { return aItems.size(); }
+ SCSIZE GetCellCount() const { return maItems.size(); }
sal_uInt32 GetWeightedCount() const;
sal_uInt32 GetCodeCount() const; // RPN-Code in formulas
sal_uInt16 GetErrCode( SCROW nRow ) const;