summaryrefslogtreecommitdiff
path: root/sc/source/core/data/documentimport.cxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-05-15 14:17:39 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-05-20 20:13:07 -0400
commitf8ed5c3ffea38b75df0a6dc44f5ee3d6da68c5ff (patch)
tree6df541046e56bc5120b708039bafa082518006e5 /sc/source/core/data/documentimport.cxx
parentb7c84a69bf989bef8de30cad36d2b5d17190d302 (diff)
Move the column element block definitions out of ScColumn.
so that I can reference it in another class. Change-Id: I035cc1d37ec219c3e3da2e180a0337fb3c6fba8a
Diffstat (limited to 'sc/source/core/data/documentimport.cxx')
-rw-r--r--sc/source/core/data/documentimport.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/data/documentimport.cxx b/sc/source/core/data/documentimport.cxx
index 0b68fedf71c7..c92688f1ada2 100644
--- a/sc/source/core/data/documentimport.cxx
+++ b/sc/source/core/data/documentimport.cxx
@@ -109,7 +109,7 @@ void ScDocumentImport::finalize()
// Column has no cells. Skip it.
continue;
- ScColumn::CTAttrStoreType::iterator itCTAPos = rCol.maCellTextAttrs.begin();
+ sc::CellTextAttrStoreType::iterator itCTAPos = rCol.maCellTextAttrs.begin();
std::vector<ColEntry>::iterator itCell = rCol.maItems.begin(), itCellEnd = rCol.maItems.end();
for (; itCell != itCellEnd; ++itCell)
itCTAPos = rCol.maCellTextAttrs.set<sc::CellTextAttr>(itCTAPos, itCell->nRow, sc::CellTextAttr());