diff options
author | Noel Grandin <noel@peralex.com> | 2013-08-12 17:19:48 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-08-15 09:11:33 +0200 |
commit | 33eeb70011b34a3b04a74b2237d1d6fdde030c35 (patch) | |
tree | 02185ff85c69ea96bd8ba744facbb8974c4415a6 /dbaccess/source | |
parent | 78b2f4be915b7dd9bfabe34162163b362f0a2141 (diff) |
convert include/svtools/svparser.hxx from String to OUString
Change-Id: I4d6196a9a96ad1dd236f8622a523b4702e92d76f
Diffstat (limited to 'dbaccess/source')
-rw-r--r-- | dbaccess/source/ui/misc/RtfReader.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/misc/RtfReader.cxx b/dbaccess/source/ui/misc/RtfReader.cxx index bd3690aed679..ffd20b447da1 100644 --- a/dbaccess/source/ui/misc/RtfReader.cxx +++ b/dbaccess/source/ui/misc/RtfReader.cxx @@ -134,7 +134,7 @@ void ORTFReader::NextToken( int nToken ) } nTmpToken2 = GetNextToken(); } - while(aToken.GetChar(0) != ';' && eState != SVPAR_ERROR && eState != SVPAR_ACCEPTED); + while(aToken[0] != ';' && eState != SVPAR_ERROR && eState != SVPAR_ACCEPTED); m_vecColor.push_back(aColor.GetRGBColor()); nTmpToken2 = GetNextToken(); } |