summaryrefslogtreecommitdiff
path: root/offapi/com
ModeNameSize
d---------sun / star31logplain
ba0870e44965b6d292450c 2016-06-14tdf#96505 Get rid of cargo cult long integer literalskrishna keshav cleanup in sot/source/stdsor/storinfo.cxx Change-Id: Ib904cb3ddc18dc90e479b35ca21ae4649abd0f0c Reviewed-on: https://gerrit.libreoffice.org/25684 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: jan iversen <jani@documentfoundation.org> Tested-by: jan iversen <jani@documentfoundation.org> 2016-06-06tools: rename SvStream::Read/Write to ReadBytes/WriteBytesMichael Stahl Change-Id: Ib788a30d413436aa03f813aa2fddcbc4d6cd2f9a Reviewed-on: https://gerrit.libreoffice.org/25972 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com> 2015-06-17Replace boost::scoped_array<T> with std::unique_ptr<T[]>Takeshi Abe 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-06-02loplugin:cstylecast: deal with those that are (technically) const_castStephan Bergmann Change-Id: I773ac633fb3f7de25c62b1e802ddce4ca2cc31c3 2015-03-18create new 'enum class' SotClipboardFormatId to unify typesNoel Grandin of which there are several. There are some issues here I am unsure of - the SW and SC and CHART2 modules essentially ignore the enum values and assign their own ids Perhaps I should change them to use the common values and create new enum values where necessary? - the sc/qa/ and sq/qa/ and starmath/qa/ code was doing some dodgy stuff. I translated the code to pass down the stuff numeric values to the underlying code, but perhaps further fixing is necessary? Change-Id: Ic06d723e404481e3f1bca67c43b70321b764d923 2015-01-16remove unnecessary parenthesesNoel Grandin left over from "SVStream operator>> to Write method" conversion Change-Id: I619eb743d7890d5c70d0a94e51ce263567fa6f3b 2014-09-26remove unnecessary casts in calls to SvStream.WriteInt32Noel Grandin left over from our conversion of the SvStream output operators to more specific methods Change-Id: I0c0172519479be0535a447e41a592fbf782751bd 2014-09-26remove unnecessary casts in calls to SvStream.WriteUCharNoel Grandin left over from our conversion of the SvStream output operators to more specific methods Change-Id: I2ea4c7d97e745b3e6a3834f41ac7bfefa4883c7a 2014-07-12Avoid possible memory leaks in case of exceptionsTakeshi Abe Change-Id: Id0304366c4e6191db85527935f5bc5cdb0aeb8d8 2014-02-12convert SvStream::operator>> methods to ReadXXX methodsNoel Grandin First, I updated the clang rewriter to do the conversion. Then I lightly hand-tweaked the output for the few places where the rewriter messed up, mostly when dealing with calls on "this". Change-Id: I40a6a977959cd97415c678eafc8507de8aa3b1a9 Reviewed-on: https://gerrit.libreoffice.org/7879 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>