summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwptblformula.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-09-27 10:31:04 +0200
committerNoel Grandin <noel@peralex.com>2013-10-01 10:08:44 +0200
commit4068562f5d46a7f743d04386647920c0b7094f24 (patch)
treedb8ebbb18c3ced558ffdf41e2ce2ad9134ab066b /lotuswordpro/source/filter/lwptblformula.hxx
parentconvert remnants of String to OUString in filter module (diff)
downloadcore-4068562f5d46a7f743d04386647920c0b7094f24.tar.gz
core-4068562f5d46a7f743d04386647920c0b7094f24.zip
convert String to OUString in lotuswordpro module
Change-Id: I4af6a11084f3337df1f6278b28fd0fd9d94d6a6a
Diffstat (limited to 'lotuswordpro/source/filter/lwptblformula.hxx')
-rw-r--r--lotuswordpro/source/filter/lwptblformula.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/lotuswordpro/source/filter/lwptblformula.hxx b/lotuswordpro/source/filter/lwptblformula.hxx
index 8efc8975d28a..3ed67ae8e0fd 100644
--- a/lotuswordpro/source/filter/lwptblformula.hxx
+++ b/lotuswordpro/source/filter/lwptblformula.hxx
@@ -111,14 +111,14 @@ class LwpFormulaArg
public:
virtual ~LwpFormulaArg() = 0;
virtual OUString ToString(LwpTableLayout* pCellsMap)=0;
- virtual String ToArgString(LwpTableLayout* pCellsMap){ return ToString(pCellsMap);}
+ virtual OUString ToArgString(LwpTableLayout* pCellsMap){ return ToString(pCellsMap);}
};
class LwpFormulaTools
{
public:
- static String GetName(sal_uInt16 nTokenType);
- static String GetCellAddr(sal_Int16 nRow, sal_Int16 nCol, LwpTableLayout* pCellsMap);
+ static OUString GetName(sal_uInt16 nTokenType);
+ static OUString GetCellAddr(sal_Int16 nRow, sal_Int16 nCol, LwpTableLayout* pCellsMap);
};
class LwpFormulaConst:public LwpFormulaArg
@@ -133,10 +133,10 @@ private:
class LwpFormulaText:public LwpFormulaArg
{
public:
- LwpFormulaText( String aText);
+ LwpFormulaText( OUString aText);
virtual OUString ToString(LwpTableLayout* /*pCellsMap*/){return m_aText;}
private:
- String m_aText;
+ OUString m_aText;
};
class LwpFormulaCellAddr:public LwpFormulaArg
@@ -175,7 +175,7 @@ public:
void AddArg(LwpFormulaArg* pArg);
virtual OUString ToString(LwpTableLayout* pCellsMap);
- String ToArgString(LwpTableLayout* pCellsMap);
+ OUString ToArgString(LwpTableLayout* pCellsMap);
protected:
vector<LwpFormulaArg*> m_aArgs;
@@ -204,7 +204,7 @@ public:
~LwpFormulaInfo();
sal_Bool IsFormula(){return sal_True;}
void SetRow(sal_uInt16 nRow){ m_nFormulaRow = nRow;}
- String Convert(LwpTableLayout* pCellsMap);
+ OUString Convert(LwpTableLayout* pCellsMap);
void Convert(XFCell * pCell, LwpTableLayout* pCellsMap);
protected:
void Read();