summaryrefslogtreecommitdiff
path: root/ucb/source/sorter/sortresult.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/sorter/sortresult.cxx')
-rw-r--r--ucb/source/sorter/sortresult.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/ucb/source/sorter/sortresult.cxx b/ucb/source/sorter/sortresult.cxx
index 8b873b6ef789..b9d530cbb531 100644
--- a/ucb/source/sorter/sortresult.cxx
+++ b/ucb/source/sorter/sortresult.cxx
@@ -1333,8 +1333,8 @@ void SortedResultSet::PropertyChanged( const PropertyChangeEvent& rEvt )
void SortedResultSet::CopyData( SortedResultSet *pSource )
{
- const SortedEntryList& rSrcS2O = pSource->GetS2OList();
- const SimpleList& rSrcO2S = pSource->GetO2SList();
+ const SortedEntryList& rSrcS2O = pSource->maS2O;
+ const SimpleList& rSrcO2S = pSource->maO2S;
sal_IntPtr i, nCount;
@@ -1354,11 +1354,11 @@ void SortedResultSet::CopyData( SortedResultSet *pSource )
}
mnLastSort = maS2O.Count();
- mxOther = pSource->GetResultSet();
+ mxOther = pSource->mxOriginal;
if ( !mpSortInfo )
{
- mpSortInfo = pSource->GetSortInfo();
+ mpSortInfo = pSource->mpSortInfo;
mbIsCopy = true;
}
}