summaryrefslogtreecommitdiff
path: root/starmath/inc
diff options
context:
space:
mode:
authorIvan Timofeev <timofeev.i.s@gmail.com>2012-10-28 12:32:29 +0400
committerIvan Timofeev <timofeev.i.s@gmail.com>2012-10-28 12:32:29 +0400
commit8da658bd33b9c781d83c59181a2ff023b163042f (patch)
tree169b9b88fcb0a04f04400c170bfd933331fdf7e4 /starmath/inc
parent72258d123467979ea7c4f1ecc029e6fb78907fad (diff)
String -> OUString
Change-Id: I2f0acb27f85a230109e827d415aabc029b90cd45
Diffstat (limited to 'starmath/inc')
-rw-r--r--starmath/inc/node.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/starmath/inc/node.hxx b/starmath/inc/node.hxx
index eb706dd86d1d..bfe89022f9a6 100644
--- a/starmath/inc/node.hxx
+++ b/starmath/inc/node.hxx
@@ -190,7 +190,7 @@ public:
/** The tree as dot graph for graphviz, usable for debugging
* Convert the output to a image using $ dot graph.gv -Tpng > graph.png
*/
- inline void DumpAsDot(std::ostream &out, String* label = NULL) const{
+ inline void DumpAsDot(std::ostream &out, OUString* label = NULL) const{
int id = 0;
DumpAsDot(out, label, -1, id, -1);
}
@@ -230,7 +230,7 @@ protected:
}
private:
SmStructureNode* aParentNode;
- void DumpAsDot(std::ostream &out, String* label, int number, int& id, int parent) const;
+ void DumpAsDot(std::ostream &out, OUString* label, int number, int& id, int parent) const;
};
////////////////////////////////////////////////////////////////////////////////