summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2014-08-14 12:22:42 -0400
committerKohei Yoshida <kohei.yoshida@collabora.com>2014-08-14 12:23:19 -0400
commit536e9ed46f021e99537d370879a6877fd93472ea (patch)
tree11607c20a30d2e46e0103e47ce65bfca70ee69c5 /editeng
parent9aac367bcc8f189bd49b6c7c6f54a4ecd0b17b53 (diff)
Build fix when DEBUG_EDIT_ENGINE is on.
Change-Id: Ie3271400862bfca7ecbefbab2d3fcdc60a893818
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/editeng/editobj.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/editeng/editobj.cxx b/editeng/source/editeng/editobj.cxx
index be0e9fba153f..cbba466c3707 100644
--- a/editeng/source/editeng/editobj.cxx
+++ b/editeng/source/editeng/editobj.cxx
@@ -188,7 +188,7 @@ bool ContentInfo::isWrongListEqual(const ContentInfo& rCompare) const
void ContentInfo::Dump() const
{
cout << "--" << endl;
- cout << "text: '" << OUString(maText.getData()) << "'" << endl;
+ cout << "text: '" << OUString(const_cast<rtl_uString*>(maText.getData())) << "'" << endl;
cout << "style: '" << aStyle << "'" << endl;
XEditAttributesType::const_iterator it = aAttribs.begin(), itEnd = aAttribs.end();