summaryrefslogtreecommitdiff
path: root/dtrans/source/cnttype/mcnttype.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'dtrans/source/cnttype/mcnttype.cxx')
-rw-r--r--dtrans/source/cnttype/mcnttype.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/dtrans/source/cnttype/mcnttype.cxx b/dtrans/source/cnttype/mcnttype.cxx
index c2ea09dfbc05..74022478ec9c 100644
--- a/dtrans/source/cnttype/mcnttype.cxx
+++ b/dtrans/source/cnttype/mcnttype.cxx
@@ -290,7 +290,7 @@ OUString SAL_CALL CMimeContentType::quotedPValue( )
{
break;
}
- else if ( isInRange( m_nxtSym, OUString(TOKEN) + OUString(TSPECIALS) + OUString(SPACE) ) )
+ else if ( isInRange( m_nxtSym, OUStringLiteral(TOKEN) + TSPECIALS + SPACE ) )
{
pvalue += m_nxtSym;
if ( m_nxtSym == "\"" )
@@ -329,7 +329,7 @@ void SAL_CALL CMimeContentType::comment( void )
{
while ( !m_nxtSym.isEmpty( ) )
{
- if ( isInRange( m_nxtSym, OUString(TOKEN) + OUString(SPACE) ) )
+ if ( isInRange( m_nxtSym, OUStringLiteral(TOKEN) + SPACE ) )
getSym( );
else if ( m_nxtSym == ")" )
break;