summaryrefslogtreecommitdiff
path: root/xmloff/inc/pch
AgeCommit message (Collapse)AuthorFilesLines
2015-09-18boost->stdCaolán McNamara1-1/+0
Change-Id: Ib5132c5623ef5adba28eabeb9ca67f8952a0f56c Reviewed-on: https://gerrit.libreoffice.org/18676 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2015-09-17revert for mac and win unit case crashes after boost->stdCaolán McNamara1-0/+1
Change-Id: I82c7084f203a834c2d42f9527705288e6036019b
2015-09-17boost->stdCaolán McNamara1-1/+0
Change-Id: I1e6a7fd66f90e6acd803c6cd464f1d73252f7bcb
2015-09-16boost->stdCaolán McNamara1-1/+0
Change-Id: Ic18be8b86727dd1179a7e39c70493d088ed00557
2015-09-11xmloff: tdf#88206 replace cppu::WeakImplHelper*Takeshi Abe1-0/+1
with the variadic variants. Change-Id: I47002abab1e025d0683f4cf8ef7b6c99e668d425 Reviewed-on: https://gerrit.libreoffice.org/18479 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
2015-08-07xmloff: replace boost::ptr_set with std::set<std::unique_ptr>Michael Stahl1-1/+0
boost::ptr_set was actually quite nice here, pity about the obnoxious warnings... Change-Id: I46973635fd26e4f1db96f2806c211b83436bef5e
2015-06-17Replace boost::scoped_array<T> with std::unique_ptr<T[]>Takeshi Abe1-1/+1
This may reduce some degree of dependency on boost. Done by running a script like: git grep -l '#include *.boost/scoped_array.hpp.' \ | xargs sed -i -e 's@#include *.boost/scoped_array.hpp.@#include <memory>@' git grep -l '\(boost::\)\?scoped_array<\([^<>]*\)>' \ | xargs sed -i -e 's/\(boost::\)\?scoped_array<\([^<>]*\)>/std::unique_ptr<\2[]>/' ... and then killing duplicate or unnecessary includes, while changing manually m_xOutlineStylesCandidates in xmloff/source/text/txtimp.cxx, extensions/source/ole/unoconversionutilities.hxx, and extensions/source/ole/oleobjw.cxx. Change-Id: I3955ed3ad99b94499a7bd0e6e3a09078771f9bfd Reviewed-on: https://gerrit.libreoffice.org/16289 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2015-05-18Remove include stdio (part2)Julien Nabet1-1/+0
Change-Id: Iae58d107d8df1c543a165086fb2b7c288e7121dd Reviewed-on: https://gerrit.libreoffice.org/15775 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
2015-02-06fdo#75757: Remove inheritance from std::vectorMatthew Pottage1-1/+0
Deprecated comphelper/sequenceasvector.hxx. Rewritten code using it. Using instead the functions containerToSequence and sequenceToContainer, found in include/comphelper/sequence.hxx. One class that inherits from it (in framework/inc/stdtypes.h), and the code using that has been left. Signed-off-by: Michael Stahl <mstahl@redhat.com> Conflicts: writerfilter/source/dmapper/DomainMapper.cxx writerfilter/source/dmapper/TblStylePrHandler.hxx writerfilter/source/dmapper/WrapPolygonHandler.hxx Change-Id: Ice61c94ffb052e389281aebb7cdf185134221061
2015-02-05Updated all precompiled headers.Ashod Nakashian2-1/+7
Change-Id: I955c8ac4dbe002d23531df7eb10fb4444d6b5157 Reviewed-on: https://gerrit.libreoffice.org/14292 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2015-01-02boost::unordered_map->std::unordered_mapCaolán McNamara2-2/+2
you can get debug stl this way Change-Id: Ia70a3e7c7c452390e8bee34975d296c9318e4a19
2014-08-13update_pchThomas Arnhold1-0/+1
Change-Id: Ic1dae7aac2f4367b4196ba3128c0aea9be1fbbda
2014-05-22update_pch: add xmloffThomas Arnhold2-0/+53
Change-Id: I66c53040509668cf33da7f486b1c328bbea08b0a
2014-04-14update_pchThomas Arnhold1-12/+9
Change-Id: I099bff66a7796a5cf18e37e445467bdfb33de602
2014-01-20Removed unused solar.h referenceAlexandre Vicenzi1-1/+0
Change-Id: I1ff7d4bad068a8bc8cdc7f27dbfaee199d0f2e5f Reviewed-on: https://gerrit.libreoffice.org/7513 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
2013-11-14Move MediaDescriptor from comphelper to unotoolsStephan Bergmann1-1/+1
...so it will be able to use SvtSecurityOptions internally. Change-Id: Id7433247e8fc53651935578510bedbcca5aa2ac9
2013-11-11xmloff: include <> for external includesNorbert Thiebaud1-8/+8
Change-Id: Ic92d0121e928041bcff00b12706f794a4d8e25c8
2013-11-07fdo#63020: Replace ::comphelper::stl_begin()...Marcos Paulo de Souza1-1/+0
And use some templates inside include/com/sun/star/uno/Sequence.hxx Change-Id: I48875fa1517751fc4cb0cf2b6c08b88975a29b47 Reviewed-on: https://gerrit.libreoffice.org/6599 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Stephan Bergmann <sbergman@redhat.com>
2013-11-05update pchThomas Arnhold1-0/+5
Change-Id: I10f3dbd9513052b3bbe30ddc6523cd231f26ded3
2013-10-15update pchThomas Arnhold1-0/+2
Change-Id: I475bee35ca5d24903d85e7f2427fab0e47d8db4d
2013-09-05update pchThomas Arnhold1-1/+2
Change-Id: I6d5e8d3fd69189935a3338fee19b60022f70a7eb
2013-07-29fdo#63690 - replace RTL_CONTEXT_ macros with SAL_INFOJelle van der Waa1-1/+0
Change-Id: I377902007445b0bce91491060f05fb8a9dbe3cd0 Reviewed-on: https://gerrit.libreoffice.org/5133 Reviewed-by: Luboš Luňák <l.lunak@suse.cz> Tested-by: Luboš Luňák <l.lunak@suse.cz>
2013-05-09Update pchAurimas Fišeras1-0/+1
Change-Id: I7c0c9158eb17cb79ffceae6770b4c513d57b3817 Reviewed-on: https://gerrit.libreoffice.org/3831 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
2013-04-25update pchThomas Arnhold1-1/+1
Change-Id: I67e73438312f2a672e71762ee6707ec5d425bb47
2013-04-20Remove pass-through header file sot/inc/sot/clsids.hxxMichael Dunphy1-1/+1
Change-Id: I122669d4ffaf72fb1d5f6fccc98e8a648f31aa23 Reviewed-on: https://gerrit.libreoffice.org/3490 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>
2013-04-05new module i18nlangtagEike Rathke1-2/+2
Moved portions from module i18npool, all of former i18nisolang1 library that now is i18nlangtag. Included are languagetag, isolang and mslangid. This i18nlangtag code is now even used by module comphelper, so disentangling i18npool and making this an own module was needed to not create circular module dependencies. Change-Id: Ib887c3d6dde667403fd22d382310ba5f1a9b0015
2013-03-21regenerate pchPeter Foley1-0/+1
Change-Id: Idacefb2e89dc2f8bd44e489b43b47847123476e2
2013-03-12update pch headersLuboš Luňák1-0/+7
Change-Id: Ibb368e6a806666a73bf6bf1a097d14bc6e75b24d
2013-03-10update pch filesPeter Foley1-0/+3
Change-Id: I07c1acc9f9e788f1165b3e241008aa944485790d
2013-02-28regenerate pchPeter Foley1-1/+0
Change-Id: I130bfbeaf8723f0f9ee38051c8acf32cb7f5ba85
2013-02-26embed also system fonts when embedding fonts in a documentLuboš Luňák1-1/+1
Without this, only fonts that had come embedded with the document were embedded when saving, which meant that it was impossible to create new documents that would have any fonts embedded. Change-Id: I3b4e87b1b3ca5ae1ccfe29d9b571b0262c568dcf
2013-02-21Revert "embed also system fonts when embedding fonts in a document"David Ostrovsky1-1/+1
that's enouph breakage for now. This reverts commit 596bd0f61f8cfc957410148ae221c62331067bdd. Change-Id: I992f439a9a099e47115a30b3d745848f3af09e5e
2013-02-21embed also system fonts when embedding fonts in a documentLuboš Luňák1-1/+1
Without this, only fonts that had come embedded with the document were embedded when saving, which meant that it was impossible to create new documents that would have any fonts embedded. Change-Id: I3b4e87b1b3ca5ae1ccfe29d9b571b0262c568dcf
2013-02-13update pch headers, broken by 1aaf9a9Luboš Luňák1-1/+9
2012-12-26ignore #include inside #ifLubos Lunak1-3/+0
2012-12-19regenerate pchPeter Foley1-103/+103
Change-Id: I4e18ce06db42e13479809ba8eec70033943271cf
2012-12-17add script to regenerate pch filesPeter Foley2-1/+1
based on a script by Lubos Lunak (http://article.gmane.org/gmane.comp.documentfoundation.libreoffice.devel/40210) Change-Id: Ib32de8be8a57b3b430f4b5b298b7f417e5a02ccb Reviewed-on: https://gerrit.libreoffice.org/1350 Reviewed-by: Luboš Luňák <l.lunak@suse.cz> Tested-by: Luboš Luňák <l.lunak@suse.cz>
2012-12-13update PCH headersLuboš Luňák1-1/+0
2012-12-10new autogenerated PCH header for xmloffLuboš Luňák1-25/+536
2012-12-10start precompiled_xmloff.hxx from scratchLuboš Luňák1-1226/+1
2012-12-10do not include removed include filesLuboš Luňák1-10/+0
2012-12-10remove unneeded PCH stuffLuboš Luňák1-9/+0
Since the PCH is now explicitly included using the command line, it is no longer necessary to have include guards or #ifdefs for enabling it. Change-Id: Ie64fdc75129af7097213d86f2daec461993fb6f4
2012-12-10use PCH for LO headers in xmloff tooLuboš Luňák1-11/+14
Interestingly this makes it slower with Clang than less headers. Change-Id: Ia28d27ca9c8154c907dae1629ca893fc4765f075
2012-12-10include guards for precompiled_xxx.hxx filesLuboš Luňák1-0/+4
It seems this makes clang somewhat faster. Change-Id: I5a22763acf7991c45d7e9fd25eb0b5bda1fae27f
2012-12-10PCH for xmloff, including LO headersLuboš Luňák1-1/+1234
Change-Id: I50e8eb58ef9b764cfb847b36b4e42f95bc437233
2012-12-10xmloff precompiled headersLuboš Luňák2-0/+57
Change-Id: Iae5ec6d6af8ebfa38f560dddc5a93a0386772f4d
2011-11-27remove precompiled_xxx.hxx/cxxNorbert Thiebaud2-510/+0
2011-11-27remove include of pch header from xmloffNorbert Thiebaud2-2/+0
2011-11-14Removed comphelper -> unotools processfactory.hxx duplication.Stephan Bergmann1-1/+0
2011-03-29drop bogus executable flag from [ch]xx/bas/asm filesFrancisco Saito2-0/+0