# # LibreOffice project .gitignore rules. # # Do not add you pet ignore rule here, use # .git/info/exclude for per repo personal ignore or # in the file specified by core.excludesfiles in your # ~/.gitconfig # # As a rule of thumb: # File that are generated by configure or the build # but that are not deleted by make clean # can be listed here... These must be deleted by maek distclean # # Files that are generated by the build but deleted by make clean # should all be under workdir or instdir # if that is not the case, don't hide it here, but try to fix it # # The intent is that after a make distclean, .gitignore # should not catch anything but possibly /external/tarballs # # where stuff is built /instdir /instdir_for_build /workdir /workdir_for_build /test-install # default location for external downloads /external/tarballs # autoconf generated stuff /aclocal.m4 /android/experimental/LOAndroid3/AndroidManifest.xml /autom4te.cache /autogen.input /autogen.lastrun /autogen.lastrun.bak /ChangeLog /config.Build.log /config.guess /config.log /config.status /config.parms /config_host.mk /config_host.mk.last /config_host.mk.stamp /config_build /config_build.mk /configure /lo.xcent /Makefile /NEWS /TODO /README /AUTHORS /MAINTAINERS # make tags /tags # backup and temporary editor files: the only convinience rules allowed here. *~ .*sw? \#* *.kdev4 .kdev_include_paths # things below this point are targeted for elimination #stuff that we should no generated where they are /desktop/scripts/soffice.sh /intltool-extract.in /intltool-merge.in /intltool-update.in *.pyc /install /*/*.exe /solenv/gdb/libreoffice/*.pyo /solenv/gdb/libreoffice/util/*.pyo /moz/zipped/*.zip __pycache__ # OSX specific .DS_Store # Xcode specific build project.xcworkspace xcuserdata *.xuserstate # MSVS specific */Debug *.sdf *.sln *.v11* *.vcxproj* *.opensdf # doxygen output /docs # gdb config /.gdbinit /.gdb_history /libreoffice-6-3'>distro/cib/libreoffice-6-3 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/cppcanvas/source
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-20 13:18:33 +0200
committerNoel Grandin <noel@peralex.com>2013-11-20 13:56:08 +0200
commitacebbee971136e6ee0a7bc75bd57d937d6e1c295 (patch)
treef56fec189343e1d9297918037b55263733243d7b /cppcanvas/source
parentd894fee80e40519cb579987b95cb3d19345dfa71 (diff)
remove RTL_CONSTASCII_STRINGPARAM in OString::equalsL calls
Convert code like: if (aByteStr.equalsL(RTL_CONSTASCII_STRINGPARAM("rem"))) to: if (aByteStr.startsWith("rem")) Change-Id: I09e40b3fdc87d59a8176c2a5f39cc6aa5cf5a576
Diffstat (limited to 'cppcanvas/source')
-rw-r--r--cppcanvas/source/mtfrenderer/implrenderer.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/cppcanvas/source/mtfrenderer/implrenderer.cxx b/cppcanvas/source/mtfrenderer/implrenderer.cxx
index a8145bb9d2f6..1b59ff2f7806 100644
--- a/cppcanvas/source/mtfrenderer/implrenderer.cxx
+++ b/cppcanvas/source/mtfrenderer/implrenderer.cxx
@@ -1653,7 +1653,7 @@ namespace cppcanvas
// XPATHSTROKE_SEQ_BEGIN comment
// Handle drawing layer fills
- else if( pAct->GetComment().equalsL(RTL_CONSTASCII_STRINGPARAM("XPATHFILL_SEQ_BEGIN")) )
+ else if( pAct->GetComment().startsWith("XPATHFILL_SEQ_BEGIN") )
{
const sal_uInt8* pData = pAct->GetData();
if ( pData )
@@ -1769,7 +1769,7 @@ namespace cppcanvas
}
}
// Handle drawing layer fills
- else if( pAct->GetComment().equalsL(RTL_CONSTASCII_STRINGPARAM("EMF_PLUS")) ) {
+ else if( pAct->GetComment().startsWith("EMF_PLUS") ) {
static int count = -1, limit = 0x7fffffff;
if (count == -1) {
count = 0;
@@ -1782,7 +1782,7 @@ namespace cppcanvas
if (count < limit)
processEMFPlus( pAct, rFactoryParms, rStates.getState(), rCanvas );
count ++;
- } else if( pAct->GetComment().equalsL(RTL_CONSTASCII_STRINGPARAM("EMF_PLUS_HEADER_INFO")) ) {
+ } else if( pAct->GetComment().startsWith("EMF_PLUS_HEADER_INFO") ) {
SAL_INFO ("cppcanvas.emf", "EMF+ passed to canvas mtf renderer - header info, size: " << pAct->GetDataSize ());
SvMemoryStream rMF ((void*) pAct->GetData (), pAct->GetDataSize (), STREAM_READ);