Kaydet (Commit) bd161794 authored tarafından Kohei Yoshida's avatar Kohei Yoshida

Added 'm' prefix for a data member.

üst cc86807e
......@@ -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;
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
......@@ -390,8 +390,8 @@ void ScDocument::FillInfo( ScTableInfo& rTabInfo, SCCOL nX1, SCROW nY1, SCCOL nX
bool bHiddenRow = true;
SCROW nHiddenEndRow = -1;
(void) pThisCol->Search( nY1, nUIndex );
while ( nUIndex < pThisCol->aItems.size() &&
(nThisRow=pThisCol->aItems[nUIndex].nRow) <= nY2 )
while ( nUIndex < pThisCol->maItems.size() &&
(nThisRow=pThisCol->maItems[nUIndex].nRow) <= nY2 )
{
if (nThisRow > nHiddenEndRow)
bHiddenRow = RowHidden( nThisRow, nTab, NULL, &nHiddenEndRow);
......@@ -403,7 +403,7 @@ void ScDocument::FillInfo( ScTableInfo& rTabInfo, SCCOL nX1, SCROW nY1, SCCOL nX
RowInfo* pThisRowInfo = &pRowInfo[nArrY];
CellInfo* pInfo = &pThisRowInfo->pCellInfo[nArrX];
pInfo->pCell = pThisCol->aItems[nUIndex].pCell;
pInfo->pCell = pThisCol->maItems[nUIndex].pCell;
if (pInfo->pCell->GetCellType() != CELLTYPE_NOTE)
{
pThisRowInfo->bEmptyText = false; // Zeile nicht leer
......
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