diff options
author | Noel Grandin <noel@peralex.com> | 2013-09-11 14:49:30 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-09-17 08:04:41 +0200 |
commit | e42e0efe504b95b3b3127b437cdf40621d1dafd8 (patch) | |
tree | 87c07267d7f1205af8ccda2cd2640d447159f9a7 /include/formula | |
parent | 21842bbb4f36cdd41363f92e498c469097de523e (diff) |
convert include/formula/IFunctionDescription.hxx from String to OUString
Change-Id: Ie3d3a3a55b50fe0dcac6be70fcce01fa544c374f
Diffstat (limited to 'include/formula')
-rw-r--r-- | include/formula/IFunctionDescription.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/formula/IFunctionDescription.hxx b/include/formula/IFunctionDescription.hxx index 23c14648482d..c5d3919366df 100644 --- a/include/formula/IFunctionDescription.hxx +++ b/include/formula/IFunctionDescription.hxx @@ -118,7 +118,7 @@ namespace formula virtual SvTreeListEntry* InsertEntry(const OUString& rText, SvTreeListEntry* pParent, sal_uInt16 nFlag,sal_uLong nPos=0,IFormulaToken* pScToken=NULL) = 0; - virtual String GetEntryText(SvTreeListEntry* pEntry) const = 0; + virtual OUString GetEntryText(SvTreeListEntry* pEntry) const = 0; virtual SvTreeListEntry* GetParent(SvTreeListEntry* pEntry) const = 0; protected: @@ -132,14 +132,14 @@ namespace formula virtual void notifyChange() = 0; virtual void fill() = 0; - virtual String getCurrentFormula() const = 0; - virtual void setCurrentFormula(const String& _sReplacement) = 0; + virtual OUString getCurrentFormula() const = 0; + virtual void setCurrentFormula(const OUString& _sReplacement) = 0; virtual void getSelection(xub_StrLen& _nStart,xub_StrLen& _nEnd) const = 0; virtual void setSelection(xub_StrLen _nStart,xub_StrLen _nEnd) = 0; virtual FormEditData* getFormEditData() const = 0; - virtual bool calculateValue(const String& _sExpression,String& _rResult) = 0; + virtual bool calculateValue(const OUString& _sExpression, OUString& _rResult) = 0; virtual void switchBack() = 0; @@ -158,7 +158,7 @@ namespace formula virtual void dispatch(sal_Bool _bOK,sal_Bool _bMartixChecked) = 0; virtual void doClose(sal_Bool _bOk) = 0; virtual void insertEntryToLRUList(const IFunctionDescription* pDesc) = 0; - virtual void showReference(const String& _sFormula) = 0; + virtual void showReference(const OUString& _sFormula) = 0; protected: ~IFormulaEditorHelper() {} |