summaryrefslogtreecommitdiffstats
path: root/src/cite/ooo/ooohandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cite/ooo/ooohandler.cpp')
-rw-r--r--src/cite/ooo/ooohandler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cite/ooo/ooohandler.cpp b/src/cite/ooo/ooohandler.cpp
index d36b3e4..6af495c 100644
--- a/src/cite/ooo/ooohandler.cpp
+++ b/src/cite/ooo/ooohandler.cpp
@@ -50,12 +50,12 @@ rtl::OUString OOOHandler::TQString2OU(const TQString& str) {
const uint len = str.length();
sal_Unicode* uni = new sal_Unicode[len + 1];
- const TQChar* qPtr = str.tqunicode();
+ const TQChar* qPtr = str.unicode();
const TQChar* qEnd = qPtr + len;
sal_Unicode* uPtr = uni;
while (qPtr != qEnd) {
- *(uPtr++) = (*(qPtr++)).tqunicode();
+ *(uPtr++) = (*(qPtr++)).unicode();
}
*uPtr = 0;