loplugin:cstylecast: deal with those that are (technically) const_cast

Change-Id: Id45e303225602e401a5c3b640185bf476c94a0bb
This commit is contained in:
Stephan Bergmann 2015-06-02 11:28:05 +02:00
parent 8c8bdc6091
commit d8ba942b99
3 changed files with 15 additions and 15 deletions

View File

@ -57,7 +57,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
aClientProgram = "kmail";
else
aClientProgram = aClientProgram.section(SPACE, 0, 0);
sClientProgram = (const sal_Unicode *) aClientProgram.utf16();
sClientProgram = reinterpret_cast<const sal_Unicode *>(aClientProgram.utf16());
return css::beans::Optional< css::uno::Any >(
true, uno::makeAny( sClientProgram ) );
} else if (id == "SourceViewFontHeight")
@ -77,7 +77,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
aFixedFont = KGlobalSettings::fixedFont();
aFontName = aFixedFont.family();
sFontName = (const sal_Unicode *) aFontName.utf16();
sFontName = reinterpret_cast<const sal_Unicode *>(aFontName.utf16());
return css::beans::Optional< css::uno::Any >(
true, uno::makeAny( sFontName ) );
} else if (id == "EnableATToolSupport")
@ -93,7 +93,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
OUString sDocumentsURL;
if ( aDocumentsDir.endsWith(QChar('/')) )
aDocumentsDir.truncate ( aDocumentsDir.length() - 1 );
sDocumentsDir = (const sal_Unicode *) aDocumentsDir.utf16();
sDocumentsDir = reinterpret_cast<const sal_Unicode *>(aDocumentsDir.utf16());
osl_getFileURLFromSystemPath( sDocumentsDir.pData, &sDocumentsURL.pData );
return css::beans::Optional< css::uno::Any >(
true, uno::makeAny( sDocumentsURL ) );
@ -119,7 +119,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
if ( !aFTPProxy.isEmpty() )
{
KUrl aProxy(aFTPProxy);
OUString sProxy = (const sal_Unicode *) aProxy.host().utf16();
OUString sProxy = reinterpret_cast<const sal_Unicode *>(aProxy.host().utf16());
return css::beans::Optional< css::uno::Any >(
true, uno::makeAny( sProxy ) );
}
@ -171,7 +171,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
if ( !aHTTPProxy.isEmpty() )
{
KUrl aProxy(aHTTPProxy);
OUString sProxy = (const sal_Unicode *) aProxy.host().utf16();
OUString sProxy = reinterpret_cast<const sal_Unicode *>(aProxy.host().utf16());
return css::beans::Optional< css::uno::Any >(
true, uno::makeAny( sProxy ) );
}
@ -223,7 +223,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
if ( !aHTTPSProxy.isEmpty() )
{
KUrl aProxy(aHTTPSProxy);
OUString sProxy = (const sal_Unicode *) aProxy.host().utf16();
OUString sProxy = reinterpret_cast<const sal_Unicode *>(aProxy.host().utf16());
return css::beans::Optional< css::uno::Any >(
true, uno::makeAny( sProxy ) );
}
@ -271,7 +271,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
OUString sNoProxyFor;
aNoProxyFor = aNoProxyFor.replace( COMMA, SEMI_COLON );
sNoProxyFor = (const sal_Unicode *) aNoProxyFor.utf16();
sNoProxyFor = reinterpret_cast<const sal_Unicode *>(aNoProxyFor.utf16());
return css::beans::Optional< css::uno::Any >(
true, uno::makeAny( sNoProxyFor ) );
}

View File

@ -53,7 +53,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
aClientProgram = "kmail";
else
aClientProgram = aClientProgram.section(SPACE, 0, 0);
sClientProgram = (const sal_Unicode *) aClientProgram.ucs2();
sClientProgram = reinterpret_cast<const sal_Unicode *>(aClientProgram.ucs2());
return css::beans::Optional< css::uno::Any >(
true, uno::makeAny( sClientProgram ) );
} else if (id == "SourceViewFontHeight")
@ -73,7 +73,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
aFixedFont = KGlobalSettings::fixedFont();
aFontName = aFixedFont.family();
sFontName = (const sal_Unicode *) aFontName.ucs2();
sFontName = reinterpret_cast<const sal_Unicode *>(aFontName.ucs2());
return css::beans::Optional< css::uno::Any >(
true, uno::makeAny( sFontName ) );
} else if (id == "EnableATToolSupport")
@ -89,7 +89,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
OUString sDocumentsURL;
if ( aDocumentsDir.endsWith(QChar('/')) )
aDocumentsDir.truncate ( aDocumentsDir.length() - 1 );
sDocumentsDir = (const sal_Unicode *) aDocumentsDir.ucs2();
sDocumentsDir = reinterpret_cast<const sal_Unicode *>(aDocumentsDir.ucs2());
osl_getFileURLFromSystemPath( sDocumentsDir.pData, &sDocumentsURL.pData );
return css::beans::Optional< css::uno::Any >(
true, uno::makeAny( sDocumentsURL ) );
@ -115,7 +115,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
if ( !aFTPProxy.isEmpty() )
{
KURL aProxy(aFTPProxy);
OUString sProxy = (const sal_Unicode *) aProxy.host().ucs2();
OUString sProxy = reinterpret_cast<const sal_Unicode *>(aProxy.host().ucs2());
return css::beans::Optional< css::uno::Any >(
true, uno::makeAny( sProxy ) );
}
@ -167,7 +167,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
if ( !aHTTPProxy.isEmpty() )
{
KURL aProxy(aHTTPProxy);
OUString sProxy = (const sal_Unicode *) aProxy.host().ucs2();
OUString sProxy = reinterpret_cast<const sal_Unicode *>(aProxy.host().ucs2());
return css::beans::Optional< css::uno::Any >(
true, uno::makeAny( sProxy ) );
}
@ -219,7 +219,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
if ( !aHTTPSProxy.isEmpty() )
{
KURL aProxy(aHTTPSProxy);
OUString sProxy = (const sal_Unicode *) aProxy.host().ucs2();
OUString sProxy = reinterpret_cast<const sal_Unicode *>(aProxy.host().ucs2());
return css::beans::Optional< css::uno::Any >(
true, uno::makeAny( sProxy ) );
}
@ -267,7 +267,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
OUString sNoProxyFor;
aNoProxyFor = aNoProxyFor.replace( COMMA, SEMI_COLON );
sNoProxyFor = (const sal_Unicode *) aNoProxyFor.ucs2();
sNoProxyFor = reinterpret_cast<const sal_Unicode *>(aNoProxyFor.ucs2());
return css::beans::Optional< css::uno::Any >(
true, uno::makeAny( sNoProxyFor ) );
}

View File

@ -184,7 +184,7 @@ rtl::OUString CFStringToOUString(const CFStringRef sOrig) {
CFRelease(sOrig);
return rtl::OUString::createFromAscii((sal_Char*)sBuffer);
return rtl::OUString::createFromAscii(sBuffer);
}
rtl::OUString GetOUString( NSString* pStr )