summaryrefslogtreecommitdiff
path: root/starmath/inc
diff options
context:
space:
mode:
authorIvan Timofeev <timofeev.i.s@gmail.com>2012-09-25 21:17:31 +0400
committerIvan Timofeev <timofeev.i.s@gmail.com>2012-10-01 16:36:47 +0400
commit773667483e3991b078eca03568681e2f3e8f4ec9 (patch)
tree6ba163fcd96a56dff789094987f3cba646a9680d /starmath/inc
parent37a2fa5d5a58628d317a2305965863dfe50f140e (diff)
String -> OUString
Change-Id: I94eafe01604b30d53d9021458a0a9c57dfc1144a
Diffstat (limited to 'starmath/inc')
-rw-r--r--starmath/inc/cursor.hxx2
-rw-r--r--starmath/inc/parse.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/starmath/inc/cursor.hxx b/starmath/inc/cursor.hxx
index 3c274cb7b7d2..b7a0d9c618e9 100644
--- a/starmath/inc/cursor.hxx
+++ b/starmath/inc/cursor.hxx
@@ -155,7 +155,7 @@ public:
* This will work for stuff like "A intersection B". But stuff spaning multiple lines
* or dependent on the context which position is placed in will not work!
*/
- void InsertCommandText(String aCommandText);
+ void InsertCommandText(OUString aCommandText);
/** Insert a special node created from aString
*
diff --git a/starmath/inc/parse.hxx b/starmath/inc/parse.hxx
index e4f1c6a9a10c..e3a8d23c5154 100644
--- a/starmath/inc/parse.hxx
+++ b/starmath/inc/parse.hxx
@@ -263,7 +263,7 @@ public:
/** Parse rBuffer to formula tree */
SmNode *Parse(const String &rBuffer);
/** Parse rBuffer to formula subtree that constitutes an expression */
- SmNode *ParseExpression(const String &rBuffer);
+ SmNode *ParseExpression(const OUString &rBuffer);
const String & GetText() const { return m_aBufferString; };