diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-04-17 13:24:51 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-04-23 21:08:19 -0400 |
commit | 97c0f88afc47b01fd5bf5a47ae92c9674e518fe1 (patch) | |
tree | 4c219f90f95bd4c183ec3982af14b4f3f826266c /sc/inc/column.hxx | |
parent | 1dad03a80a1236aa643974ab49a3f4cc75ceec1f (diff) |
Store cell text attribute pointers during initialization.
This will be used later when re-ordering rows.
Change-Id: I47504b49be11174b0002b1af1cbce9b8b7f2531c
Diffstat (limited to 'sc/inc/column.hxx')
-rw-r--r-- | sc/inc/column.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sc/inc/column.hxx b/sc/inc/column.hxx index 44b43df863e5..717da5ef3273 100644 --- a/sc/inc/column.hxx +++ b/sc/inc/column.hxx @@ -178,8 +178,12 @@ public: const sc::CellNoteStoreType& GetCellNoteStore() const { return maCellNotes; } ScRefCellValue GetCellValue( SCROW nRow ) const; + ScRefCellValue GetCellValue( sc::ColumnBlockConstPosition& rBlockPos, SCROW nRow ) const; ScRefCellValue GetCellValue( const sc::CellStoreType::const_iterator& itPos, size_t nOffset ) const; + const sc::CellTextAttr* GetCellTextAttr( SCROW nRow ) const; + const sc::CellTextAttr* GetCellTextAttr( sc::ColumnBlockConstPosition& rBlockPos, SCROW nRow ) const; + void Delete( SCROW nRow ); void FreeAll(); void SwapRow( SCROW nRow1, SCROW nRow2 ); |