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