summaryrefslogtreecommitdiff
path: root/sc/source/filter/xcl97
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-02-27 09:45:35 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-02-27 09:45:58 +0000
commit906e35f80a17d51c305e0db251e6224f5dd23d52 (patch)
treeeb1b62e54748e6fd62be8cab9dcf8735baa7f9e3 /sc/source/filter/xcl97
parent84fa063b4ce1bd6a8996c20c89e238ee38bcdcfe (diff)
merge GetString variants
Diffstat (limited to 'sc/source/filter/xcl97')
-rw-r--r--sc/source/filter/xcl97/XclExpChangeTrack.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/filter/xcl97/XclExpChangeTrack.cxx b/sc/source/filter/xcl97/XclExpChangeTrack.cxx
index d009ef768d74..f18e824ea776 100644
--- a/sc/source/filter/xcl97/XclExpChangeTrack.cxx
+++ b/sc/source/filter/xcl97/XclExpChangeTrack.cxx
@@ -859,14 +859,14 @@ void XclExpChTrCellContent::GetCellData(
if( pScCell->GetCellType() == CELLTYPE_STRING )
{
const ScStringCell* pStrCell = static_cast< const ScStringCell* >( pScCell );
- pStrCell->GetString( sCellStr );
+ sCellStr = pStrCell->GetString();
rpData->mpFormattedString = XclExpStringHelper::CreateCellString( rRoot,
*pStrCell, NULL );
}
else
{
const ScEditCell* pEditCell = static_cast< const ScEditCell* >( pScCell );
- pEditCell->GetString( sCellStr );
+ sCellStr = pEditCell->GetString();
XclExpHyperlinkHelper aLinkHelper( rRoot, aPosition );
rpData->mpFormattedString = XclExpStringHelper::CreateCellString( rRoot,
*pEditCell, NULL, aLinkHelper );