summaryrefslogtreecommitdiff
path: root/extensions/source/ole
AgeCommit message (Collapse)Author
2015-11-28-Werror,-Wunused-variableStephan Bergmann
Change-Id: I72a5f707787930c64057c71e5caf9ab726739e4f
2015-11-28-Werror,-Wunused-variableStephan Bergmann
Change-Id: I13259b76d5fba0bd4dcc99ce8161e8f049dbe698
2015-11-24Silence clang-cl warnings in system ATL includesStephan Bergmann
Change-Id: Ie9c35db4404182efa948949851caabf402f2d74b
2015-11-24-Werror,-WreorderStephan Bergmann
Change-Id: I0a82c589b77ee247ce43dbfd88767100b7bd4147
2015-11-24-Werror,-Wlogical-op-parenthesesStephan Bergmann
Change-Id: Ifbac95117d58d0fd9f40ef373e14544a37c0cce6
2015-11-24-Werror,-Wwritable-stringsStephan Bergmann
Change-Id: Ib407ba5bb6b20281948ba83a4e150b9fe19c19d9
2015-11-24-Werror,-WreorderStephan Bergmann
Change-Id: Iaefccb789c7f3d3da259af39a909ebc2abeccc74
2015-11-24-Werror,-Winconsistent-missing-overrideStephan Bergmann
Change-Id: I851a1ce314dc3c47744d7a039065a945e62568d8
2015-11-24-Werror,-Wunused-local-typedefStephan Bergmann
Change-Id: I72b1fe3d183e0d2af40c3af2f2a65fdc0c251624
2015-11-24-Werror,-Wint-to-pointer-castStephan Bergmann
Change-Id: I27098dec221b5019aaef927cf9567910621fdd3d
2015-11-24-Werror,-Wenum-compareStephan Bergmann
Change-Id: I165daea216ac3b960d11dfece861f4fb21209ed0
2015-11-24-Werror,-Wwritable-stringsStephan Bergmann
Change-Id: Ief710b95ab7f41ef5fcb534dabe05311aa1135d3
2015-11-24-Werror,-WreorderStephan Bergmann
Change-Id: Ie400720915ad9e6a075666dcac2b1b3711376bf3
2015-11-24-Werror,-Wenum-compareStephan Bergmann
Change-Id: I1d4263e9f754d85eb70bc5ce88fe1deffb05e9bb
2015-11-24-Werror,-Wlogical-op-parenthesesStephan Bergmann
Change-Id: I48bcb6e35ffc3ce73a2142e52f453b1c839e4831
2015-11-24-Werror,-Wmicrosoft-exception-specStephan Bergmann
Change-Id: Iba187daa891d326011cddecf09daa349e9090913
2015-11-24-Werror,-WreorderStephan Bergmann
Change-Id: Iecb4fcc79614eee8dbfa7980c50f41150110711b
2015-11-24-Wmicrosoft-default-arg-redefinitionStephan Bergmann
Change-Id: I69c009af5d5bd8d497a636eaa1de9b8eed919c8f
2015-11-02use uno::Reference::set method instead of assignmentNoel Grandin
Change-Id: Ib297f2ab1c0c82703030f28d034d24f8a84a85ea Reviewed-on: https://gerrit.libreoffice.org/19732 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2015-10-24bogus cppcheck duplicateExpressionTernary warningCaolán McNamara
Change-Id: I9c6e7699790cc2e526a15daf8c5c25555aa30fc9
2015-10-12Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY codeStephan Bergmann
Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
2015-10-01com::sun::star->css in extensions/Noel Grandin
Change-Id: I64af9f5ae444e1f7bc6c0e8c29df383a9531dba9
2015-09-30Fix typosAndrea Gelmini
Change-Id: Iaa9dd3f02f21947742643349d3b878126017477d Reviewed-on: https://gerrit.libreoffice.org/18947 Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
2015-09-15cppcheck: noExplicitConstructorCaolán McNamara
Change-Id: If00a2de2c23271baaee126230c6bf9e657666ff4
2015-08-28Bin a few leftover (?) stderr printoutsTor Lillqvist
If they are truly needed, use SAL_INFO then.
2015-08-06tdf#88206 replace cppu::WeakImplHelper* etc.Takeshi Abe
with the variadic variants in extensions. Change-Id: I45e9dc5769150181df88791b3f748002ca713c02 Reviewed-on: https://gerrit.libreoffice.org/17517 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2015-07-23Bin pointless #ifndef #define danceTor Lillqvist
Change-Id: I0f7a3183a16a56f831a828af9de6c8f8c459339a
2015-07-03Fix typosAndrea Gelmini
Change-Id: Id884946cae0687d0b71c967e236e58df17567884 Reviewed-on: https://gerrit.libreoffice.org/16707 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-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-05-29Fix Windows 64-bit buildStephan Bergmann
Change-Id: Ie02b1b51463aa9d6c5e80001eb089909995d5b5b
2015-04-22Various #include <sal/log.hxx> fixupsStephan Bergmann
rtl/string.hxx and rtl/ustring.hxx both unnecessarily #include <sal/log.hxx> (and don't make use of it themselves), but many other files happen to depend on it. Cleaned up some, but something like grep -FwL sal/log.hxx $(git grep -Elw \ 'SAL_INFO|SAL_INFO_IF|SAL_WARN|SAL_WARN_IF') -- \*.cxx) shows lots more files that potentially need fixing before the include can be removed from rtl/string.hxx and rtl/ustring.hxx. Change-Id: Ibf033363e83d37851776f392dc0b077381cd8b90
2015-04-15remove unnecessary use of void in function declarationsNoel Grandin
ie. void f(void); becomes void f(); I used the following command to make the changes: git grep -lP '\(\s*void\s*\)' -- *.cxx \ | xargs perl -pi -w -e 's/(\w+)\s*\(\s*void\s*\)/$1\(\)/g;' and ran it for both .cxx and .hxx files. Change-Id: I314a1b56e9c14d10726e32841736b0ad5eef8ddd
2015-04-01Typo: wheter->whetherJulien Nabet
Change-Id: Iab5e7de499452924b4ac0d34cc604ee38395c813
2015-04-01Replace remaining getCppuType et al with cppu::UnoTypeStephan Bergmann
Change-Id: Iee8db4ae259f0d2181140cb3f7ce859bad7cd33d
2015-03-24Fix various Windows-only XServiceInfo implementationsStephan Bergmann
...to match what is recorded in the .component files Change-Id: Ibc5bb0575f3869317e4d14614cf1dad0af728ddc
2015-02-21Typo: queriing->queryingJulien Nabet
Change-Id: I9bb56396f263c73fbb22a556da32a5da7f94c3fd
2015-02-21Typo: reqired->requiredJulien Nabet
Change-Id: I22b5ad47ba76da9b00e9a69bcfbc00befc369fe6
2015-01-09override the overloading of "overload" to decrease cognitive (over-)loadMichael Stahl
Change-Id: I4d0e1de89d0bbdbea23bc5a46bf75ae0ce4e2796
2015-01-04boost::unordered_map->std::unordered_mapCaolán McNamara
Change-Id: I5d458f43616edc395faa8c27edaddc7d515166db
2014-12-15fdo#39440 reduce scope of local variablesMichael Weghorn
This addresses some cppcheck warnings. Change-Id: I026999d6e995185c42df6770a1a700094540d08a Reviewed-on: https://gerrit.libreoffice.org/13454 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-11-18cppuhelper: clean up public headers with include-what-you-useMichael Stahl
Change-Id: I41ba46831f24b2960a1fe982b74a2b623e682e0b
2014-11-17sal: clean up public headers with include-what-you-useMichael Stahl
Sadly cannot forward declare "struct {...} TimeValue;". rtl/(u)?string.hxx still include sal/log.hxx but removing osl/diagnose.h was painful enough for now... Change-Id: Id41e17f3870c4f24c53ce7b11f2c40a3d14d1f05
2014-11-12Fix common typos. No automatic tools. Handmade…Andrea Gelmini
Change-Id: I1ab4e23b0539f8d39974787f226e57a21f96e959 Reviewed-on: https://gerrit.libreoffice.org/12164 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-09-18Blind fix for WindowsStephan Bergmann
Change-Id: I1b923cba578b0acc2b9ce389c6c7d664fa00b268
2014-09-18Blind fix for WindowsStephan Bergmann
Change-Id: I186024f8a95ada752115750419a54a6231967f57
2014-09-18fdo#83512 Make use of OUStringHash and OStringHashDaniel Sikeler
Change-Id: I33cafe68c798e3d54943ea1790fa4e73f85e525d Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
2014-08-13warning C4189: local variable is initialized but not referencedThomas Arnhold
Change-Id: I12f050afe42e6ef50286423d7d055e794f04ecc4
2014-08-01typo: more then -> more thanTakeshi Abe
Change-Id: I2e477d66f25bde7256938ccb1f95ab26add24922
2014-06-29Typo: beeing->beingJulien Nabet
Change-Id: I34937e400ac8576154d33e1e11b80690222f532c
2014-05-23remove boilerplate in UNO Exception constructor callsNoel Grandin
Now that we have default values for Exception constructor params, remove lots of boilerplate code. Change-Id: I620bd641eecfed38e6123873b3b94aaf47922e74