loplugin:unnecessaryparen (clang-cl)
Change-Id: I61b006051e708636f0bba83b16de36f4571b8da7
This commit is contained in:
parent
a2736303fe
commit
186eda28fc
@ -231,7 +231,7 @@ bool SAL_CALL CDataFormatTranslator::isHTMLFormat( CLIPFORMAT cf )
|
||||
bool SAL_CALL CDataFormatTranslator::isTextHtmlFormat( CLIPFORMAT cf )
|
||||
{
|
||||
OUString clipFormatName = getClipboardFormatName( cf );
|
||||
return ( clipFormatName.equalsIgnoreAsciiCase( HTML_FORMAT_NAME_SOFFICE ) );
|
||||
return clipFormatName.equalsIgnoreAsciiCase( HTML_FORMAT_NAME_SOFFICE );
|
||||
}
|
||||
|
||||
OUString SAL_CALL CDataFormatTranslator::getTextCharsetFromLCID( LCID lcid, CLIPFORMAT aClipformat )
|
||||
|
@ -23,12 +23,12 @@
|
||||
|
||||
oslInterlockedCount SAL_CALL osl_incrementInterlockedCount(oslInterlockedCount* pCount)
|
||||
{
|
||||
return (InterlockedIncrement(pCount));
|
||||
return InterlockedIncrement(pCount);
|
||||
}
|
||||
|
||||
oslInterlockedCount SAL_CALL osl_decrementInterlockedCount(oslInterlockedCount* pCount)
|
||||
{
|
||||
return (InterlockedDecrement(pCount));
|
||||
return InterlockedDecrement(pCount);
|
||||
}
|
||||
|
||||
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|
||||
|
Loading…
x
Reference in New Issue
Block a user