summaryrefslogtreecommitdiffstats
path: root/xmlhelp/source/cxxhelp/provider/content.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmlhelp/source/cxxhelp/provider/content.cxx')
-rw-r--r--xmlhelp/source/cxxhelp/provider/content.cxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/content.cxx b/xmlhelp/source/cxxhelp/provider/content.cxx
index cc0522740ce6..55ceac639727 100644
--- a/xmlhelp/source/cxxhelp/provider/content.cxx
+++ b/xmlhelp/source/cxxhelp/provider/content.cxx
@@ -163,7 +163,7 @@ uno::Sequence< uno::Type > SAL_CALL Content::getTypes()
rtl::OUString SAL_CALL Content::getImplementationName()
throw( uno::RuntimeException )
{
- return rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "CHelpContent" ));
+ return rtl::OUString( "CHelpContent" );
}
//=========================================================================
@@ -173,7 +173,7 @@ uno::Sequence< rtl::OUString > SAL_CALL Content::getSupportedServiceNames()
{
uno::Sequence< rtl::OUString > aSNS( 1 );
aSNS.getArray()[ 0 ]
- = rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( MYUCP_CONTENT_SERVICE_NAME ));
+ = rtl::OUString( MYUCP_CONTENT_SERVICE_NAME );
return aSNS;
}
@@ -187,7 +187,7 @@ uno::Sequence< rtl::OUString > SAL_CALL Content::getSupportedServiceNames()
rtl::OUString SAL_CALL Content::getContentType()
throw( uno::RuntimeException )
{
- return rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( MYUCP_CONTENT_TYPE ));
+ return rtl::OUString( MYUCP_CONTENT_TYPE );
}
//=========================================================================
@@ -460,8 +460,8 @@ uno::Reference< sdbc::XRow > Content::getPropertyValues(
if ( rProp.Name == "ContentType" )
xRow->appendString(
rProp,
- rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
- "application/vnd.sun.star.help" )) );
+ rtl::OUString(
+ "application/vnd.sun.star.help" ) );
else if ( rProp.Name == "Title" )
xRow->appendString ( rProp,m_aURLParameter.get_title() );
else if ( rProp.Name == "IsReadOnly" )
@@ -480,18 +480,18 @@ uno::Reference< sdbc::XRow > Content::getPropertyValues(
if( m_aURLParameter.isPicture() )
xRow->appendString(
rProp,
- rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "image/gif" )) );
+ rtl::OUString( "image/gif" ) );
else if( m_aURLParameter.isActive() )
xRow->appendString(
rProp,
- rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "text/plain" )) );
+ rtl::OUString( "text/plain" ) );
else if( m_aURLParameter.isFile() )
xRow->appendString(
- rProp,rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "text/html" )) );
+ rProp,rtl::OUString( "text/html" ) );
else if( m_aURLParameter.isRoot() )
xRow->appendString(
rProp,
- rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "text/css" )) );
+ rtl::OUString( "text/css" ) );
else
xRow->appendVoid( rProp );
else if( m_aURLParameter.isModule() )
@@ -542,8 +542,8 @@ uno::Reference< sdbc::XRow > Content::getPropertyValues(
else if ( rProp.Name == "SearchScopes" )
{
uno::Sequence< rtl::OUString > seq( 2 );
- seq[0] = rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "Heading" ));
- seq[1] = rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "FullText" ));
+ seq[0] = rtl::OUString( "Heading" );
+ seq[1] = rtl::OUString( "FullText" );
uno::Any aAny;
aAny <<= seq;
xRow->appendObject( rProp,aAny );
@@ -562,7 +562,7 @@ uno::Reference< sdbc::XRow > Content::getPropertyValues(
}
else
xRow->appendVoid( rProp );
- else if( rProp.Name.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("AnchorName")) &&
+ else if( "AnchorName" == rProp.Name &&
m_aURLParameter.isFile() )
xRow->appendString( rProp,m_aURLParameter.get_tag() );
else