diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-06-21 15:39:46 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-06-24 16:51:39 -0400 |
commit | 359f33c5d0d39c4fcc57cba199a0d5b9a66c8fb9 (patch) | |
tree | 1381c25f68ecb5fbb9e17ee7df5f70c873387267 /sc/inc | |
parent | 9186ae043b7e8afa5730b9d70818360cdfef2201 (diff) |
Rename parameter names for consistency.
nCol and nRow are better than nX and nY etc.
Change-Id: Ie92d4e2727a1100736610a3876721d61e8279b15
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/document.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx index 9d4224451004..08c4ab6aef4a 100644 --- a/sc/inc/document.hxx +++ b/sc/inc/document.hxx @@ -1564,10 +1564,10 @@ public: void SetSrcCharSet( CharSet eNew ) { eSrcSet = eNew; } void UpdateFontCharSet(); - void FillInfo( ScTableInfo& rTabInfo, SCCOL nX1, SCROW nY1, SCCOL nX2, SCROW nY2, - SCTAB nTab, double nScaleX, double nScaleY, - bool bPageMode, bool bFormulaMode, - const ScMarkData* pMarkData = NULL ); + void FillInfo( + ScTableInfo& rTabInfo, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, + SCTAB nTab, double fColScale, double fRowScale, bool bPageMode, bool bFormulaMode, + const ScMarkData* pMarkData = NULL ); SC_DLLPUBLIC SvNumberFormatter* GetFormatTable() const; |