summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/xelink.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-09-30 11:37:14 +0200
committerNoel Grandin <noel@peralex.com>2013-10-04 08:49:01 +0200
commit0d0cd2b3aeb89bd223c7b779e89805cab2dd340f (patch)
tree56b12a42c8b061c9b23ed3519e53887badce52bf /sc/source/filter/inc/xelink.hxx
parent52fcc738eeb9c7ff3fc023668dc335076e8bef42 (diff)
convert sc/source/file/inc/xe*.hxx from String to OUString
Change-Id: I3e0a0edb7a49ceed94bf64800bbd4ca8481b89db
Diffstat (limited to 'sc/source/filter/inc/xelink.hxx')
-rw-r--r--sc/source/filter/inc/xelink.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sc/source/filter/inc/xelink.hxx b/sc/source/filter/inc/xelink.hxx
index 8331aa928fb2..0aa5ee378baf 100644
--- a/sc/source/filter/inc/xelink.hxx
+++ b/sc/source/filter/inc/xelink.hxx
@@ -161,7 +161,7 @@ public:
/** Searches for a special EXTERNSHEET index for the own document. */
sal_uInt16 FindExtSheet( sal_Unicode cCode );
- void FindExtSheet( sal_uInt16 nFileId, const String& rTabName, sal_uInt16 nXclTabSpan,
+ void FindExtSheet( sal_uInt16 nFileId, const OUString& rTabName, sal_uInt16 nXclTabSpan,
sal_uInt16& rnExtSheet, sal_uInt16& rnFirstSBTab, sal_uInt16& rnLastSBTab,
XclExpRefLogEntry* pRefLogEntry = NULL );
@@ -170,9 +170,9 @@ public:
/** Stores all cells in the given range in a CRN record list. */
void StoreCellRange( const ScComplexRefData& rRef, const ScAddress& rPos );
- void StoreCell( sal_uInt16 nFileId, const String& rTabName, const ScAddress& rPos );
+ void StoreCell( sal_uInt16 nFileId, const OUString& rTabName, const ScAddress& rPos );
- void StoreCellRange( sal_uInt16 nFileId, const String& rTabName, const ScRange& rRange );
+ void StoreCellRange( sal_uInt16 nFileId, const OUString& rTabName, const ScRange& rRange );
/** Finds or inserts an EXTERNNAME record for an add-in function name.
@param rnExtSheet (out-param) Returns the index of the EXTSHEET structure for the add-in function name.
@@ -180,22 +180,22 @@ public:
@return true = add-in function inserted; false = error (i.e. not supported in current BIFF). */
bool InsertAddIn(
sal_uInt16& rnExtSheet, sal_uInt16& rnExtName,
- const String& rName );
+ const OUString& rName );
/** InsertEuroTool */
bool InsertEuroTool(
sal_uInt16& rnExtSheet, sal_uInt16& rnExtName,
- const String& rName );
+ const OUString& rName );
/** Finds or inserts an EXTERNNAME record for DDE links.
@param rnExtSheet (out-param) Returns the index of the EXTSHEET structure for the DDE link.
@param rnExtName (out-param) Returns the 1-based EXTERNNAME record index.
@return true = DDE link inserted; false = error (i.e. not supported in current BIFF). */
bool InsertDde(
sal_uInt16& rnExtSheet, sal_uInt16& rnExtName,
- const String& rApplic, const String& rTopic, const String& rItem );
+ const OUString& rApplic, const OUString& rTopic, const OUString& rItem );
bool InsertExtName(
- sal_uInt16& rnExtSheet, sal_uInt16& rnExtName, const String& rUrl,
- const String& rName, const ScExternalRefCache::TokenArrayRef pArray );
+ sal_uInt16& rnExtSheet, sal_uInt16& rnExtName, const OUString& rUrl,
+ const OUString& rName, const ScExternalRefCache::TokenArrayRef pArray );
/** Writes the entire Link table. */
virtual void Save( XclExpStream& rStrm );