summaryrefslogtreecommitdiff
path: root/oox/inc/oox/xls/pivotcachefragment.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'oox/inc/oox/xls/pivotcachefragment.hxx')
-rw-r--r--oox/inc/oox/xls/pivotcachefragment.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/oox/inc/oox/xls/pivotcachefragment.hxx b/oox/inc/oox/xls/pivotcachefragment.hxx
index 34a833e26525..8cb72b31a39c 100644
--- a/oox/inc/oox/xls/pivotcachefragment.hxx
+++ b/oox/inc/oox/xls/pivotcachefragment.hxx
@@ -81,7 +81,7 @@ class PivotCacheRecordsFragment : public WorksheetFragmentBase
{
public:
explicit PivotCacheRecordsFragment(
- const WorkbookHelper& rHelper,
+ const WorksheetHelper& rHelper,
const ::rtl::OUString& rFragmentPath,
const PivotCache& rPivotCache );
@@ -97,8 +97,8 @@ private:
private:
const PivotCache& mrPivotCache;
- sal_Int32 mnCol;
- sal_Int32 mnRow;
+ sal_Int32 mnColIdx; /// Relative column index in source data.
+ sal_Int32 mnRowIdx; /// Relative row index in source data.
bool mbInRecord;
};
@@ -126,7 +126,7 @@ class BiffPivotCacheRecordsContext : public BiffWorksheetContextBase
{
public:
explicit BiffPivotCacheRecordsContext(
- const WorkbookHelper& rHelper,
+ const WorksheetHelper& rHelper,
const PivotCache& rPivotCache );
/** Reads the current record from stream and tries to insert a cell into
@@ -142,7 +142,7 @@ private:
const PivotCache& mrPivotCache;
ColumnIndexVector maUnsharedCols; /// Column indexes of all unshared cache fields.
size_t mnColIdx; /// Current index into maUnsharedCols.
- sal_Int32 mnRow; /// Current row in source data (0-based).
+ sal_Int32 mnRowIdx; /// Current row in source data (0-based).
bool mbHasShared; /// True = pivot cache contains fields with shared items.
bool mbInRow; /// True = a data row has been started.
};