summaryrefslogtreecommitdiff
path: root/include/svtools/svparser.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-12 17:19:48 +0200
committerNoel Grandin <noel@peralex.com>2013-08-15 09:11:33 +0200
commit33eeb70011b34a3b04a74b2237d1d6fdde030c35 (patch)
tree02185ff85c69ea96bd8ba744facbb8974c4415a6 /include/svtools/svparser.hxx
parent78b2f4be915b7dd9bfabe34162163b362f0a2141 (diff)
convert include/svtools/svparser.hxx from String to OUString
Change-Id: I4d6196a9a96ad1dd236f8622a523b4702e92d76f
Diffstat (limited to 'include/svtools/svparser.hxx')
-rw-r--r--include/svtools/svparser.hxx30
1 files changed, 15 insertions, 15 deletions
diff --git a/include/svtools/svparser.hxx b/include/svtools/svparser.hxx
index bd2ee966469a..ee4688e9f96d 100644
--- a/include/svtools/svparser.hxx
+++ b/include/svtools/svparser.hxx
@@ -47,15 +47,15 @@ class SVT_DLLPUBLIC SvParser : public SvRefBase
DECL_STATIC_LINK( SvParser, NewDataRead, void* );
protected:
- SvStream& rInput;
- String aToken; // gescanntes Token
+ SvStream& rInput;
+ OUString aToken; // gescanntes Token
sal_uLong nlLineNr; // akt. Zeilen Nummer
sal_uLong nlLinePos; // akt. Spalten Nummer
- SvParser_Impl *pImplData; // interne Daten
- long nTokenValue; // zusaetzlicher Wert (RTF)
+ SvParser_Impl *pImplData; // interne Daten
+ long nTokenValue; // zusaetzlicher Wert (RTF)
sal_Bool bTokenHasValue; // indicates whether nTokenValue is valid
- SvParserState eState; // Status auch in abgl. Klassen
+ SvParserState eState; // Status auch in abgl. Klassen
rtl_TextEncoding eSrcEnc; // Source encoding
@@ -79,10 +79,10 @@ protected:
struct TokenStackType
{
- String sToken;
- long nTokenValue;
+ OUString sToken;
+ long nTokenValue;
sal_Bool bTokenHasValue;
- int nTokenId;
+ int nTokenId;
inline TokenStackType() { nTokenId = 0; }
inline ~TokenStackType() { }
@@ -207,8 +207,8 @@ class SvKeyValue
{
/** Representation.
*/
- String m_aKey;
- String m_aValue;
+ OUString m_aKey;
+ OUString m_aValue;
public:
/** Construction.
@@ -216,7 +216,7 @@ public:
SvKeyValue (void)
{}
- SvKeyValue (const String &rKey, const String &rValue)
+ SvKeyValue (const OUString &rKey, const OUString &rValue)
: m_aKey (rKey), m_aValue (rValue)
{}
@@ -235,11 +235,11 @@ public:
/** Operation.
*/
- const String& GetKey (void) const { return m_aKey; }
- const String& GetValue (void) const { return m_aValue; }
+ const OUString& GetKey (void) const { return m_aKey; }
+ const OUString& GetValue (void) const { return m_aValue; }
- void SetKey (const String &rKey ) { m_aKey = rKey; }
- void SetValue (const String &rValue) { m_aValue = rValue; }
+ void SetKey (const OUString &rKey ) { m_aKey = rKey; }
+ void SetValue (const OUString &rValue) { m_aValue = rValue; }
};
/*========================================================================