summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/AccessibleCsvControl.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-09-27 13:56:58 +0200
committerNoel Grandin <noel@peralex.com>2013-10-04 08:48:59 +0200
commitfbb07536e49f7f80200ae038331fc5281a1e773e (patch)
tree6390e6ed4fc58d028f2ce5cb7e5c404afddfce21 /sc/source/ui/inc/AccessibleCsvControl.hxx
parent568c45f37f78c87ec11ee81ed51d0fa9fe83495e (diff)
convert sc/source/ui/inc/a*.hxx from String to OUString
Change-Id: Ia127776aed43eb634b4a7b87d03000d0d53c3b64
Diffstat (limited to 'sc/source/ui/inc/AccessibleCsvControl.hxx')
-rw-r--r--sc/source/ui/inc/AccessibleCsvControl.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/inc/AccessibleCsvControl.hxx b/sc/source/ui/inc/AccessibleCsvControl.hxx
index bf2926eb4946..822aec9236bf 100644
--- a/sc/source/ui/inc/AccessibleCsvControl.hxx
+++ b/sc/source/ui/inc/AccessibleCsvControl.hxx
@@ -539,7 +539,7 @@ private:
inline sal_Int32 implGetIndex( sal_Int32 nRow, sal_Int32 nColumn ) const { return nRow * implGetColumnCount() + nColumn; }
/** Returns the contents of the specified cell (including header). Indexes must be valid. */
- String implGetCellText( sal_Int32 nRow, sal_Int32 nColumn ) const;
+ OUString implGetCellText( sal_Int32 nRow, sal_Int32 nColumn ) const;
/** Creates a new accessible object of the specified cell. Indexes must be valid. */
ScAccessibleCsvControl* implCreateCellObj( sal_Int32 nRow, sal_Int32 nColumn ) const;
};
@@ -556,7 +556,7 @@ protected:
typedef ::std::auto_ptr< SvxEditSource > SvxEditSourcePtr;
private:
- String maCellText; /// The text contents of this cell.
+ OUString maCellText; /// The text contents of this cell.
sal_Int32 mnLine; /// The grid line index (core index).
sal_uInt32 mnColumn; /// The grid column index (core index).
sal_Int32 mnIndex; /// The index of the cell in the table.
@@ -564,7 +564,7 @@ private:
public:
explicit ScAccessibleCsvCell(
ScCsvGrid& rGrid,
- const String& rCellText,
+ const OUString& rCellText,
sal_Int32 nRow, sal_Int32 nColumn );
virtual ~ScAccessibleCsvCell();