summaryrefslogtreecommitdiff
path: root/sc/inc/fmtuno.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-10-03 14:07:33 +0200
committerNoel Grandin <noel@peralex.com>2013-10-04 09:10:14 +0200
commit26acd487845bd6c6f08036bffde1631fae56087a (patch)
treeb8c956ebebb623099b784a4917966435f3ec3020 /sc/inc/fmtuno.hxx
parent049b9cb306356f97b3bcf7474223f5bdd47f1ca2 (diff)
convert sc/inc/fmtuno.hxx from String to OUString
Change-Id: Ia8fccd5d062ed27bebf87a46f774fff589c1076b
Diffstat (limited to 'sc/inc/fmtuno.hxx')
-rw-r--r--sc/inc/fmtuno.hxx46
1 files changed, 23 insertions, 23 deletions
diff --git a/sc/inc/fmtuno.hxx b/sc/inc/fmtuno.hxx
index 5006bd2c56a9..9e7f5258069a 100644
--- a/sc/inc/fmtuno.hxx
+++ b/sc/inc/fmtuno.hxx
@@ -52,14 +52,14 @@ class ScValidationData;
struct ScCondFormatEntryItem
{
- ::com::sun::star::uno::Sequence< ::com::sun::star::sheet::FormulaToken > maTokens1;
- ::com::sun::star::uno::Sequence< ::com::sun::star::sheet::FormulaToken > maTokens2;
- String maExpr1;
- String maExpr2;
- String maExprNmsp1;
- String maExprNmsp2;
- String maPosStr; // formula position as text
- String maStyle; // display name as stored in ScStyleSheet
+ css::uno::Sequence< css::sheet::FormulaToken > maTokens1;
+ css::uno::Sequence< css::sheet::FormulaToken > maTokens2;
+ OUString maExpr1;
+ OUString maExpr2;
+ OUString maExprNmsp1;
+ OUString maExprNmsp2;
+ OUString maPosStr; // formula position as text
+ OUString maStyle; // display name as stored in ScStyleSheet
ScAddress maPos;
formula::FormulaGrammar::Grammar meGrammar1; // grammar used with maExpr1
formula::FormulaGrammar::Grammar meGrammar2; // grammar used with maExpr2
@@ -205,27 +205,27 @@ class ScTableValidationObj : public cppu::WeakImplHelper5<
{
private:
SfxItemPropertySet aPropSet;
- sal_uInt16 nMode; // enum ScConditionMode
- String aExpr1;
- String aExpr2;
- String maExprNmsp1;
- String maExprNmsp2;
+ sal_uInt16 nMode; // enum ScConditionMode
+ OUString aExpr1;
+ OUString aExpr2;
+ OUString maExprNmsp1;
+ OUString maExprNmsp2;
formula::FormulaGrammar::Grammar meGrammar1; // grammar used with aExpr1 and aExpr2
formula::FormulaGrammar::Grammar meGrammar2; // grammar used with aExpr1 and aExpr2
::com::sun::star::uno::Sequence< ::com::sun::star::sheet::FormulaToken > aTokens1;
::com::sun::star::uno::Sequence< ::com::sun::star::sheet::FormulaToken > aTokens2;
ScAddress aSrcPos;
- String aPosString; // formula position as text
- sal_uInt16 nValMode; // enum ScValidationMode
- sal_Bool bIgnoreBlank;
+ OUString aPosString; // formula position as text
+ sal_uInt16 nValMode; // enum ScValidationMode
+ sal_Bool bIgnoreBlank;
sal_Int16 nShowList;
- sal_Bool bShowInput;
- OUString aInputTitle;
- OUString aInputMessage;
- sal_Bool bShowError;
- sal_uInt16 nErrorStyle; // enum ScValidErrorStyle
- OUString aErrorTitle;
- OUString aErrorMessage;
+ sal_Bool bShowInput;
+ OUString aInputTitle;
+ OUString aInputMessage;
+ sal_Bool bShowError;
+ sal_uInt16 nErrorStyle; // enum ScValidErrorStyle
+ OUString aErrorTitle;
+ OUString aErrorMessage;
void ClearData_Impl();