summaryrefslogtreecommitdiff
path: root/oox/inc/oox/xls/sharedstringsbuffer.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'oox/inc/oox/xls/sharedstringsbuffer.hxx')
-rw-r--r--oox/inc/oox/xls/sharedstringsbuffer.hxx11
1 files changed, 4 insertions, 7 deletions
diff --git a/oox/inc/oox/xls/sharedstringsbuffer.hxx b/oox/inc/oox/xls/sharedstringsbuffer.hxx
index eff8ab4e7738..936eb6766ef4 100644
--- a/oox/inc/oox/xls/sharedstringsbuffer.hxx
+++ b/oox/inc/oox/xls/sharedstringsbuffer.hxx
@@ -49,15 +49,12 @@ public:
/** Final processing after import of all strings. */
void finalizeImport();
- /** Converts the specified string table entry. */
- void convertString(
- const ::com::sun::star::uno::Reference< ::com::sun::star::text::XText >& rxText,
- sal_Int32 nStringId,
- sal_Int32 nXfId ) const;
+ /** Returns the specified string. */
+ RichStringRef getString( sal_Int32 nStringId ) const;
private:
- typedef RefVector< RichString > StringVec;
- StringVec maStrings;
+ typedef RefVector< RichString > StringVector;
+ StringVector maStrings;
};
// ============================================================================