Kaydet (Commit) 71511385 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Just pass in OUString directly

Change-Id: Idf7d63672e8b330499e53c1395dedb92d25bb76a
üst 464d9249
......@@ -242,12 +242,6 @@ void SbiTokenizer::Push( SbiToken t )
else ePush = t;
}
void SbiTokenizer::Error( SbError code, const char* pMsg )
{
aError = OUString::createFromAscii( pMsg );
Error( code );
}
void SbiTokenizer::Error( SbError code, const OUString &aMsg )
{
aError = aMsg;
......
......@@ -158,7 +158,6 @@ public:
void Error( SbError c ) { GenError( c ); }
void Error( SbError, SbiToken );
void Error( SbError, const char* );
void Error( SbError, const OUString &);
static bool IsEoln( SbiToken t )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment