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: ...@@ -106,7 +106,7 @@ private:
SCCOL nCol; SCCOL nCol;
SCTAB nTab; SCTAB nTab;
std::vector<ColEntry> aItems; std::vector<ColEntry> maItems;
ScAttrArray* pAttrArray; ScAttrArray* pAttrArray;
ScDocument* pDocument; ScDocument* pDocument;
...@@ -256,7 +256,7 @@ public: ...@@ -256,7 +256,7 @@ public:
double GetValue( SCROW nRow ) const; double GetValue( SCROW nRow ) const;
void GetFormula( SCROW nRow, rtl::OUString& rFormula ) const; void GetFormula( SCROW nRow, rtl::OUString& rFormula ) const;
CellType GetCellType( SCROW nRow ) const; CellType GetCellType( SCROW nRow ) const;
SCSIZE GetCellCount() const { return aItems.size(); } SCSIZE GetCellCount() const { return maItems.size(); }
sal_uInt32 GetWeightedCount() const; sal_uInt32 GetWeightedCount() const;
sal_uInt32 GetCodeCount() const; // RPN-Code in formulas sal_uInt32 GetCodeCount() const; // RPN-Code in formulas
sal_uInt16 GetErrCode( SCROW nRow ) const; 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 ...@@ -390,8 +390,8 @@ void ScDocument::FillInfo( ScTableInfo& rTabInfo, SCCOL nX1, SCROW nY1, SCCOL nX
bool bHiddenRow = true; bool bHiddenRow = true;
SCROW nHiddenEndRow = -1; SCROW nHiddenEndRow = -1;
(void) pThisCol->Search( nY1, nUIndex ); (void) pThisCol->Search( nY1, nUIndex );
while ( nUIndex < pThisCol->aItems.size() && while ( nUIndex < pThisCol->maItems.size() &&
(nThisRow=pThisCol->aItems[nUIndex].nRow) <= nY2 ) (nThisRow=pThisCol->maItems[nUIndex].nRow) <= nY2 )
{ {
if (nThisRow > nHiddenEndRow) if (nThisRow > nHiddenEndRow)
bHiddenRow = RowHidden( nThisRow, nTab, NULL, &nHiddenEndRow); bHiddenRow = RowHidden( nThisRow, nTab, NULL, &nHiddenEndRow);
...@@ -403,7 +403,7 @@ void ScDocument::FillInfo( ScTableInfo& rTabInfo, SCCOL nX1, SCROW nY1, SCCOL nX ...@@ -403,7 +403,7 @@ void ScDocument::FillInfo( ScTableInfo& rTabInfo, SCCOL nX1, SCROW nY1, SCCOL nX
RowInfo* pThisRowInfo = &pRowInfo[nArrY]; RowInfo* pThisRowInfo = &pRowInfo[nArrY];
CellInfo* pInfo = &pThisRowInfo->pCellInfo[nArrX]; CellInfo* pInfo = &pThisRowInfo->pCellInfo[nArrX];
pInfo->pCell = pThisCol->aItems[nUIndex].pCell; pInfo->pCell = pThisCol->maItems[nUIndex].pCell;
if (pInfo->pCell->GetCellType() != CELLTYPE_NOTE) if (pInfo->pCell->GetCellType() != CELLTYPE_NOTE)
{ {
pThisRowInfo->bEmptyText = false; // Zeile nicht leer 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