summaryrefslogtreecommitdiff
path: root/external/cairo/pixman
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2023-06-27 14:18:40 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2023-06-27 19:23:25 +0200
commit2c685e244f44271e0dde1960e0973da9708576fe (patch)
tree442dad327720f4758614f5161b9222396f387db5 /external/cairo/pixman
parent858dfb53598ed379a2e72c887a7f77909b550ca0 (diff)
remove this SAL_WARN
has not revealed anything interesting on jenkins Change-Id: I15ebabc171dbb38f440ec607ea05be9b807bdea8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153648 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'external/cairo/pixman')
0 files changed, 0 insertions, 0 deletions
ubject'>java: remove commented out codeNoel Grandin Change-Id: I44e2043e5da23bc9421c03e550ef1d8b7ebaad36 2014-08-05java: remove various unused variablesNoel Grandin Change-Id: Id9f30938f594cb6fe73bf40adfffa65ec1b42cd1 2014-06-05stoc: remove SAL_THROW macroNoel Grandin Change-Id: I7443c855a7145837621887030b0d3d01cca2a5ac 2014-05-24cppcheck: redundantAssignmentThomas Arnhold Change-Id: Ic4a2738aeba8e0446ea2428d5adab3dd11f72928 2014-05-23Prefer cppu::UnoType<T>::get() to ::getCppuType((T*)0) part20Julien Nabet Change-Id: If87cdfb2c605254f6d69baa4ca5aec09091caa68 2014-05-22cppcheck: fprintf format string requires 1 parameter but only 0 are givenThomas Arnhold Change-Id: I31a5a4e2bad79cfc425fb712688794a4a1dc4f60 2014-05-22stoc: fix includesThomas Arnhold Change-Id: I0809bfa6897d469e63d6e84898f60aae16a14862 2014-05-22stoc: make use of css aliasThomas Arnhold Change-Id: I1dd85a7b1236cfebd5e653fe6d329968e556364b 2014-05-16idl: remove external header guardsThomas Arnhold Change-Id: I78661f0750e4213a20dd2341580cbb181897f3ba 2014-04-24add missing modelines to idl filesThomas Arnhold Change-Id: If52651c70ee659c83ef127da4fe5e266cfe7eec2 2014-03-10stoc: simplify deprecated XTypeProvider.getImplementationIdStephan Bergmann Change-Id: I57eca2dcf316232c26c528015c4ba18ba3c4760d 2014-02-26Remove visual noise from stocAlexander Wilms Change-Id: I19edfb2796298c4870124d0d1e9488974a010bb8 Reviewed-on: https://gerrit.libreoffice.org/8316 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com> 2014-02-23Remove unneccessary commentsAlexander Wilms Change-Id: I939160ae72fecbe3d4a60ce755730bd4c38497fb Reviewed-on: https://gerrit.libreoffice.org/8182 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com> 2014-01-31Remove UNOIDL "array" and "union" vaporware remnantsStephan Bergmann ...and deprecate what cannot be removed for compatibility. Change-Id: I1ea335af775b867b468b8285113631167729a92a 2014-01-26Translate some German comments to English, and remove some ASCII art.Sven Wehner Additional changes according to Chris Sherlock's wishes (removing comment decorations, removing no-purpose comments) Change-Id: I5346010d67ed5d1b2b2ad0df91ac472dde905683 Reviewed-on: https://gerrit.libreoffice.org/7504 Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com> Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com> Tested-by: Norbert Thiebaud <nthiebaud@gmail.com> 2014-01-21Fix bogus mass-conversion equalsAsciiL -> startsWithStephan Bergmann 3af99e4d59d89c343965a928681a30f36b1007d2 "convert equalsAsciiL calls to startsWith calls" should rather have converted to oprator ==. Change-Id: Id4a8836c5d6d570e54661c40be7214632e202b21 2014-01-07remove unnecessary sal_Unicode casts in OUStringBuffer::append callsNoel Grandin Convert code like: buf.append( static_cast<sal_Unicode>('!') ); to: buf.append( '!' ); Change-Id: Iacb03a61de65a895540940953b49620677b3d051 2013-12-17Remove unnecessary use of OUString constructor in + expressionsNoel Grandin Convert code like aFilename = OUString::number(nFilePostfixCount) + OUString(".bmp"); to aFilename = OUString::number(nFilePostfixCount) + ".bmp"; Change-Id: I03f513ad1c8ec8846b2afbdc67ab12525ed07e50 2013-12-16Clean-up uno/lbnames.hStephan Bergmann Change-Id: I4bd729499aa8be58f04194656e35c1f79d5d4919 2013-11-22remove unnecessary RTL_CONSTASCII_STRINGPARAMNoel Grandin A final pass through the code, converting code to use the new OUString and OString methods that can detect string literals. Change-Id: Ifa6382335e5650a1c67e52006b26354e0692c710 2013-11-20remove unnecessary RTL_CONSTASCII_STRINGPARAM in appendAscii callsNoel Grandin Convert code like: aStrBuf.appendAscii( RTL_CONSTASCII_STRINGPARAM( "ln(x)" )); to: aStrBuf.append( "ln(x)" ); which compiles down to the same code. Change-Id: I24c7cb45ceb32fd7cd6ec7ed203c2a5d746f1c5c 2013-11-20convert equalsAsciiL calls to startsWith callsNoel Grandin Convert code like: aStr.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "ActiveConnection" ) ) to aStr.startsWith( "ActiveConnection" ) which compiles down to the same machine code. Change-Id: Id4b0c5e0f9afe716a468d3afc70374699848dc33 2013-11-19remove unnecessary use of OUString constructor when assigningNoel Grandin change code like aStr = OUString("xxxx"); to aStr = "xxxx"; Change-Id: Ib981a5cc735677ec5dba76ef9279a107d22e99d4 2013-11-19remove most use of RTL_CONSTASCII_USTRINGPARAM macroNoel Grandin This is largely unnecessary when working with OUString Change-Id: I3cf4d68357a43665d01162ef4a2d5346a45da9be 2013-11-08remove unnecessary use of OUString constructor in STOC moduleNoel Grandin Change-Id: I980223cedb6d0054ef71cbd81691f70a24f506ad 2013-11-04remove redundant calls to OUString constructor in if expressionNoel Grandin Convert code like: if( aStr == OUString("xxxx") ) to this: if( aStr == "xxxx" ) Change-Id: I8d201f048477731eff590fb988259ef0935c080c 2013-11-04remove redundant calls to OUString constructorNoel Grandin Change code like this: aStr = OUString("xxxx"); into this: aStr = "xxxx"; Change-Id: I31cb92e21658d57bb9e14b65c179536eae8096f6 2013-10-22fdo#54938: Adapt supportsService implementations..Marcos Paulo de Souza to cppu::supportsService Change-Id: I0b03d3910f094f2183bf9859db9d5bcaf35d1f14 Reviewed-on: https://gerrit.libreoffice.org/6370 Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Stephan Bergmann <sbergman@redhat.com>