loplugin:cstylecast: deal with those that are (technically) const_cast
Change-Id: Id45e303225602e401a5c3b640185bf476c94a0bb
This commit is contained in:
@@ -57,7 +57,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
|
|||||||
aClientProgram = "kmail";
|
aClientProgram = "kmail";
|
||||||
else
|
else
|
||||||
aClientProgram = aClientProgram.section(SPACE, 0, 0);
|
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 >(
|
return css::beans::Optional< css::uno::Any >(
|
||||||
true, uno::makeAny( sClientProgram ) );
|
true, uno::makeAny( sClientProgram ) );
|
||||||
} else if (id == "SourceViewFontHeight")
|
} else if (id == "SourceViewFontHeight")
|
||||||
@@ -77,7 +77,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
|
|||||||
|
|
||||||
aFixedFont = KGlobalSettings::fixedFont();
|
aFixedFont = KGlobalSettings::fixedFont();
|
||||||
aFontName = aFixedFont.family();
|
aFontName = aFixedFont.family();
|
||||||
sFontName = (const sal_Unicode *) aFontName.utf16();
|
sFontName = reinterpret_cast<const sal_Unicode *>(aFontName.utf16());
|
||||||
return css::beans::Optional< css::uno::Any >(
|
return css::beans::Optional< css::uno::Any >(
|
||||||
true, uno::makeAny( sFontName ) );
|
true, uno::makeAny( sFontName ) );
|
||||||
} else if (id == "EnableATToolSupport")
|
} else if (id == "EnableATToolSupport")
|
||||||
@@ -93,7 +93,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
|
|||||||
OUString sDocumentsURL;
|
OUString sDocumentsURL;
|
||||||
if ( aDocumentsDir.endsWith(QChar('/')) )
|
if ( aDocumentsDir.endsWith(QChar('/')) )
|
||||||
aDocumentsDir.truncate ( aDocumentsDir.length() - 1 );
|
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 );
|
osl_getFileURLFromSystemPath( sDocumentsDir.pData, &sDocumentsURL.pData );
|
||||||
return css::beans::Optional< css::uno::Any >(
|
return css::beans::Optional< css::uno::Any >(
|
||||||
true, uno::makeAny( sDocumentsURL ) );
|
true, uno::makeAny( sDocumentsURL ) );
|
||||||
@@ -119,7 +119,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
|
|||||||
if ( !aFTPProxy.isEmpty() )
|
if ( !aFTPProxy.isEmpty() )
|
||||||
{
|
{
|
||||||
KUrl aProxy(aFTPProxy);
|
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 >(
|
return css::beans::Optional< css::uno::Any >(
|
||||||
true, uno::makeAny( sProxy ) );
|
true, uno::makeAny( sProxy ) );
|
||||||
}
|
}
|
||||||
@@ -171,7 +171,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
|
|||||||
if ( !aHTTPProxy.isEmpty() )
|
if ( !aHTTPProxy.isEmpty() )
|
||||||
{
|
{
|
||||||
KUrl aProxy(aHTTPProxy);
|
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 >(
|
return css::beans::Optional< css::uno::Any >(
|
||||||
true, uno::makeAny( sProxy ) );
|
true, uno::makeAny( sProxy ) );
|
||||||
}
|
}
|
||||||
@@ -223,7 +223,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
|
|||||||
if ( !aHTTPSProxy.isEmpty() )
|
if ( !aHTTPSProxy.isEmpty() )
|
||||||
{
|
{
|
||||||
KUrl aProxy(aHTTPSProxy);
|
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 >(
|
return css::beans::Optional< css::uno::Any >(
|
||||||
true, uno::makeAny( sProxy ) );
|
true, uno::makeAny( sProxy ) );
|
||||||
}
|
}
|
||||||
@@ -271,7 +271,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
|
|||||||
OUString sNoProxyFor;
|
OUString sNoProxyFor;
|
||||||
|
|
||||||
aNoProxyFor = aNoProxyFor.replace( COMMA, SEMI_COLON );
|
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 >(
|
return css::beans::Optional< css::uno::Any >(
|
||||||
true, uno::makeAny( sNoProxyFor ) );
|
true, uno::makeAny( sNoProxyFor ) );
|
||||||
}
|
}
|
||||||
|
@@ -53,7 +53,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
|
|||||||
aClientProgram = "kmail";
|
aClientProgram = "kmail";
|
||||||
else
|
else
|
||||||
aClientProgram = aClientProgram.section(SPACE, 0, 0);
|
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 >(
|
return css::beans::Optional< css::uno::Any >(
|
||||||
true, uno::makeAny( sClientProgram ) );
|
true, uno::makeAny( sClientProgram ) );
|
||||||
} else if (id == "SourceViewFontHeight")
|
} else if (id == "SourceViewFontHeight")
|
||||||
@@ -73,7 +73,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
|
|||||||
|
|
||||||
aFixedFont = KGlobalSettings::fixedFont();
|
aFixedFont = KGlobalSettings::fixedFont();
|
||||||
aFontName = aFixedFont.family();
|
aFontName = aFixedFont.family();
|
||||||
sFontName = (const sal_Unicode *) aFontName.ucs2();
|
sFontName = reinterpret_cast<const sal_Unicode *>(aFontName.ucs2());
|
||||||
return css::beans::Optional< css::uno::Any >(
|
return css::beans::Optional< css::uno::Any >(
|
||||||
true, uno::makeAny( sFontName ) );
|
true, uno::makeAny( sFontName ) );
|
||||||
} else if (id == "EnableATToolSupport")
|
} else if (id == "EnableATToolSupport")
|
||||||
@@ -89,7 +89,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
|
|||||||
OUString sDocumentsURL;
|
OUString sDocumentsURL;
|
||||||
if ( aDocumentsDir.endsWith(QChar('/')) )
|
if ( aDocumentsDir.endsWith(QChar('/')) )
|
||||||
aDocumentsDir.truncate ( aDocumentsDir.length() - 1 );
|
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 );
|
osl_getFileURLFromSystemPath( sDocumentsDir.pData, &sDocumentsURL.pData );
|
||||||
return css::beans::Optional< css::uno::Any >(
|
return css::beans::Optional< css::uno::Any >(
|
||||||
true, uno::makeAny( sDocumentsURL ) );
|
true, uno::makeAny( sDocumentsURL ) );
|
||||||
@@ -115,7 +115,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
|
|||||||
if ( !aFTPProxy.isEmpty() )
|
if ( !aFTPProxy.isEmpty() )
|
||||||
{
|
{
|
||||||
KURL aProxy(aFTPProxy);
|
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 >(
|
return css::beans::Optional< css::uno::Any >(
|
||||||
true, uno::makeAny( sProxy ) );
|
true, uno::makeAny( sProxy ) );
|
||||||
}
|
}
|
||||||
@@ -167,7 +167,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
|
|||||||
if ( !aHTTPProxy.isEmpty() )
|
if ( !aHTTPProxy.isEmpty() )
|
||||||
{
|
{
|
||||||
KURL aProxy(aHTTPProxy);
|
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 >(
|
return css::beans::Optional< css::uno::Any >(
|
||||||
true, uno::makeAny( sProxy ) );
|
true, uno::makeAny( sProxy ) );
|
||||||
}
|
}
|
||||||
@@ -219,7 +219,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
|
|||||||
if ( !aHTTPSProxy.isEmpty() )
|
if ( !aHTTPSProxy.isEmpty() )
|
||||||
{
|
{
|
||||||
KURL aProxy(aHTTPSProxy);
|
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 >(
|
return css::beans::Optional< css::uno::Any >(
|
||||||
true, uno::makeAny( sProxy ) );
|
true, uno::makeAny( sProxy ) );
|
||||||
}
|
}
|
||||||
@@ -267,7 +267,7 @@ css::beans::Optional< css::uno::Any > getValue(OUString const & id) {
|
|||||||
OUString sNoProxyFor;
|
OUString sNoProxyFor;
|
||||||
|
|
||||||
aNoProxyFor = aNoProxyFor.replace( COMMA, SEMI_COLON );
|
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 >(
|
return css::beans::Optional< css::uno::Any >(
|
||||||
true, uno::makeAny( sNoProxyFor ) );
|
true, uno::makeAny( sNoProxyFor ) );
|
||||||
}
|
}
|
||||||
|
@@ -184,7 +184,7 @@ rtl::OUString CFStringToOUString(const CFStringRef sOrig) {
|
|||||||
|
|
||||||
CFRelease(sOrig);
|
CFRelease(sOrig);
|
||||||
|
|
||||||
return rtl::OUString::createFromAscii((sal_Char*)sBuffer);
|
return rtl::OUString::createFromAscii(sBuffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
rtl::OUString GetOUString( NSString* pStr )
|
rtl::OUString GetOUString( NSString* pStr )
|
||||||
|
Reference in New Issue
Block a user