summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-03-04Silence -Werror,-Wnon-virtual-dtorStephan Bergmann
Change-Id: Ibe968bdb968a0a86723fcc2c9fa958261724c7da
2016-03-04-Werror,-WshadowStephan Bergmann
Change-Id: Ie6a35ce1fece5de31f455d88ab3e12010b8047f5
2016-03-04-Werror,-Wunused-macrosStephan Bergmann
According to <https://msdn.microsoft.com/en-us/library/windows/desktop/aa383681%28v=vs.85%29.aspx> ("Enabling STRICT"), it is used in combination with including windows.h, so maybe this #define STRICT (which was there ever since a934115b3ea90d7883681a6ca8922a4b859be36f "Initial revision," w/o also including windows.h) was always unnecessary (as reported by clang-cl). Change-Id: I02cf2584fe2fd52e9513791b18fdf6e7982e89b3
2016-03-04Silence -Werror,-Wnon-virtual-dtorStephan Bergmann
Change-Id: I46f7b68aded50abc0015b458507adbf84d0ffe76
2016-03-04-Werror,-WshadowStephan Bergmann
Change-Id: I40f92daa60a08d93ea7bbe309fd16fa7ef27e78b
2016-03-04-Werror,-Wunused-macrosStephan Bergmann
"VC_EXTRALEAN can only be used in MFC projects." (<https://support.microsoft.com/en-us/kb/166474> "How to use VC_EXTRALEAN and WIN32_LEAN_AND_MEAN to enhance the build process in Visual C++") So presumably indeed not needed here (as reported by clang-cl). Change-Id: Id98c6e9e862e716cf5e238623c6ac4ca0603fd63
2016-03-04-Werror,-WundefStephan Bergmann
see c665a1bc0f45aa4a4c679e6f004581168e03f93d for __STDC__ not defined under MSVC/clang-cl. Change-Id: I65d8a3b33ff40fc80c52b294b0c5bc75d9f5cf2f
2016-03-04fixup tdf#92538Lionel Elie Mamane
Change-Id: I57650fe955a31f433d611d9e74a0762d349bed64
2016-03-04fixup tdf#92538Lionel Elie Mamane
Change-Id: I62fbead59ac83147da6da984f89b64b1d7e4f90d
2016-03-04-Werror,-WundefStephan Bergmann
For MSVC/clang-cl: "__STDC__: Indicates conformance with the ANSI/ISO C99 tandard. Defined as the integer literal constant 1 only if the /Za compiler option is given and you are not compiling C++ code; otherwise is undefined." (<https://msdn.microsoft.com/en-us/library/b0084kay.aspx>) Presumably fine to just replace #if with #ifdef here (as is used in all the other cases surrounding it), and not care whether it actually expands to true. Change-Id: Ie58c76d7e72321b06a11a370fd28221e85fcf871
2016-03-04-Werror,-Wunused-macrosStephan Bergmann
Whatever those _POSIX_ for _MSV_VER were supposed to be good for (have been in there at least ever since 4f4b74153d27a9579c49b225b2690e7f9416fe78 "Moved cpp from cpp to soltools"), but cause -Wunused-macros at least when building with clang-cl. Change-Id: I356bf663cd1e86298ba72a179f46bb9d0c10016b
2016-03-04-Werror,-Wunused-macrosStephan Bergmann
Change-Id: I5402d52ec42fa27c58b276eeb22eeb270c3d7948
2016-03-04-Werror,-WshadowStephan Bergmann
Change-Id: Ib20a02a846b745b65ffcf9ec1d45b39a6e0c50e4
2016-03-04Silence -Werror,-Wnon-virtual-dtor (clang-cl)Stephan Bergmann
Change-Id: Icac0f029461c886ebb03aedcd54189116b66d8a3
2016-03-04writerfilter: prefix members of RTFTokenizerMiklos Vajna
Change-Id: Icba6646e183bc283e3c86a223a7f76306123200b
2016-03-04writerfilter: prefix members of RTFHori/VertOrientMiklos Vajna
Change-Id: Icc0a4af0e5995116d65d0dea0881e10ca8d92232
2016-03-04tdf#87812 - SIDEBAR: More animation information in list controlAkshay Deep
Modified Custom Animation ListBox entry to include multiple lines. Added Effect names in Custom Animation List Control. Change-Id: Ic974ffc9fca6803ff76135620df1fbe9edcde565 Reviewed-on: https://gerrit.libreoffice.org/22403 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
2016-03-04tdf#96505 Remove long integer literal specifier when not neededAleksas Pantechovskis
Remove L from integer literals if it does not produce warnings and does not change semantics Change-Id: I9573a47d3e3401993a1f0fbcf7df4be20f9e6eba Reviewed-on: https://gerrit.libreoffice.org/22867 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2016-03-04loplugin:unuseddefaultparams in vcl and xmloffNoel Grandin
and teach the plugin about code that takes the address of a function Change-Id: Ia9d5afef44520aca236659e8176f1e27135ef4fc Reviewed-on: https://gerrit.libreoffice.org/22861 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2016-03-04upload libpagemaker 0.0.3David Tardon
Change-Id: I7d0f7e9a1bf9d2d590337cf4bb8cc4860c05444e Reviewed-on: https://gerrit.libreoffice.org/22864 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>
2016-03-03SVGIO: Check height and width of polypolygoncolorXisco Fauli
Change-Id: Ibc5844d4e4a89fae7bbc8d2b854384d0c433500f Reviewed-on: https://gerrit.libreoffice.org/22883 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Xisco Faulí <anistenis@gmail.com>
2016-03-03Fix coinmp on MSVC 14.0David Ostrovsky
Iterator category tags carry information that can be used to select the most efficient algorithms for the specific requirement set that is implied by the category. OsiCuts defines bidirectional category tag, but doesn't implement operator--(). This is illegal: [1]. * [1] http://paste.openstack.org/show/489235 Change-Id: I68a6d297d5c33848c4b8a324e081c5118fd936a4 Reviewed-on: https://gerrit.libreoffice.org/22882 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Jenkins <ci@libreoffice.org>
2016-03-03vcl: type inference is beyond MSVC's limited abilitiesMichael Stahl
Change-Id: I3e6c84c1f49e9523e881ce12dbb2f7e0d1df956e
2016-03-03coverity#1355126 Logically dead codeCaolán McNamara
maybe we should be using more precision, but we haven't been in the past Change-Id: Icf1e1e95099c783435e04f60d8ade755a8d2d4d5
2016-03-03nLog10Divisor is 1Caolán McNamara
Change-Id: I8820d435e2f26d04ac3eccb710383399d050e020
2016-03-03We don't use 'using' for other std types either in this fileTor Lillqvist
Change-Id: I561e515da65db619330b536e3c8c6de555730740
2016-03-03delete works fine on nullptrTor Lillqvist
Change-Id: I373df68f8ce59d34d98a8c5608a16deb278ecec3
2016-03-03loplugin:nullptrTor Lillqvist
Change-Id: I139b93f3285c61e2a4ba2d7959273dbcd1f95694
2016-03-03loplugin:unreffunTor Lillqvist
Change-Id: I13b718ae04c30d02003fa31322de655f9386b815
2016-03-03tdf#97215 Sorting with update reference causes crashArul Michael
The memory of SvtBroadcaster* of a cell is freed in EndlisteningCell() during SplitFormulaGroups call. The same memory address is assigned back to the cell again when the contents are transferred back after sorting. This is because the CreateSortinfoArray is done before SplitformulaGroup. For fix getting mpbroadcaster from the Document instead of SortinfoArray since we change the broadcaster in document after creating the SortInfoArray. Change-Id: Ic492d5019e26ff204307db4fefccc48ec99c0a6d Reviewed-on: https://gerrit.libreoffice.org/22607 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
2016-03-03tdf#92538 use proper schema name for type namesLionel Elie Mamane
Change-Id: I7e428e4530765925bd35c7f4fcde7f95ceb12243
2016-03-03tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionalsRohan Kumar
Change-Id: If329cf8257684e7bd2936641b8f14ec3e9b9f733 Reviewed-on: https://gerrit.libreoffice.org/22647 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
2016-03-03tdf#94635 Add FORECAST.ETS functions to CalcWinfried Donkers
Change-Id: Ifbfff1c27fb3960a06f467630da0fa39665f0ce4 Reviewed-on: https://gerrit.libreoffice.org/20073 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
2016-03-03xmlsecurity OOXML export: don't attempt to sign other signaturesMiklos Vajna
For one, MSO doesn't do that either by default. For another, this would currently result in a io::IOException, because: - the root storage is opened read-write, to be able to add the signature - then _xmlsignatures/newsig is opened read-write to be able to write the signature - opening _xmlsignatures/something as read-only still opens the _xmlsignatures storage as read-write -> boom, we tried to open the same sub-storage read-write two times, OStorage::openStorageElement() detects that Change-Id: I2b90dc044bcfb835df4f19a339a0447e69f42975
2016-03-03xmlsecurity OOXML export: don't loose old signatures when adding a new oneMiklos Vajna
With this, at least we don't completely throw away existing signatures. The roundtrip of them isn't perfect yet, though. Change-Id: Ibc3408364403a057169e384902afe13b1e397480
2016-03-03xmlsecurity: avoid calculating the certificate digest late in XSecControllerMiklos Vajna
Every other aspect of the certificate is calculated earlier in DocumentSignatureManager, so calculate the digest there as well. Change-Id: Icd97f3ecb084bbce60fcdfa496b6aaf0ac75026d
2016-03-03loplugin:nullptrStephan Bergmann
Change-Id: I3c65591d2693b6aa8bb860bf00100dc28f01db0c
2016-03-03loplugin:stringconstantStephan Bergmann
Change-Id: I1a594a3d62790125244d221aeaa6d989adf30d97
2016-03-03loplugin:nullptrStephan Bergmann
Change-Id: Ie50bf53a24d44a7f645f381a3d07710cc3986151
2016-03-03Unzip the InfoPlist.strings files into correct locationsTor Lillqvist
Not sure how useful it is to only provide translations for the ODF document format names, though. Change-Id: I22a2e5b896e077ca3067a30635f7cdf67c2f5e7c (cherry picked from commit 16f62d80c38f3920a40fc078edecad905ba2b196) (cherry picked from commit 348ac6a9d28d5961b8804a7be09d334fbc8ef21a)
2016-03-03Don't package ui-previewer in App Store caseAndras Timar
Change-Id: I122c65d7f6dec7588ea2624e291e9dfe04dff22c (cherry picked from commit 89dff9226690829b985371c3f2b29e57bfed06ed)
2016-03-03ERROR ITMS-90511: CFBundleIdentifier CollisionAndras Timar
Change-Id: I4413853a2e8c23af770323a1e7b21cedb637cfb1 (cherry picked from commit ca7078abb540623bf4ac5728b94036a7b4782622) Reviewed-on: https://gerrit.libreoffice.org/22858 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Andras Timar <andras.timar@collabora.com>
2016-03-03put python starter shell script to Resources folder of OS X appAndras Timar
Change-Id: Iaed947b9168fbd1e2d2c79da724426b56bd8a830 (cherry picked from commit 4f606fd7bf1ca0bd440fdccac39aa5f4a5e35a36) Reviewed-on: https://gerrit.libreoffice.org/22857 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Andras Timar <andras.timar@collabora.com>
2016-03-03ucb: replace boost::bind with C++11 lambdasMichael Stahl
... and remove now unused comphelper::TNamedValueEqualFunctor. Change-Id: Ia6cac4ae4e34d2ba134e2f2a4a5b4daea58bf0b3
2016-03-03sal: replace boost::bind with C++11 lambdasMichael Stahl
Change-Id: If8e16b7805b5b25dafe053e35cd98079abbea83c
2016-03-03sd: replace boost::bind with C++11 lambdas or std::bindMichael Stahl
Change-Id: I1fc9ca7712fde802c885f5cfeedec1575d913f85
2016-03-03gtk3: position the native popup menus exactly where we want themCaolán McNamara
Change-Id: I2594925cba1f7c9c90178906d9c782024ad1cf4f
2016-03-03refactor these two bizarro positioning things into reusable chunksCaolán McNamara
Change-Id: I3f89aca650d31658ce17b3b1496a7babba23bdc6
2016-03-03Fix java home detection on gentooWol
On gentoo (and some other distros?) /usr/bin/javac points at a script that chooses the version of java to run. So when configure resolves the link it doesn't end up where it expects to be. This mod detects this situation, clears java_home, and lets it fall through to the next test which completes successfully. Change-Id: I7400ac06485475203abd584f60aed7eca81c7f90 Reviewed-on: https://gerrit.libreoffice.org/22847 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2016-03-03We don't want those bin/InfoPlist_*.zip files in the app bundleTor Lillqvist
(cherry picked from commit 7956d38fa3c0db77b9b2b41f870bd3587e3dc1af) Conflicts: Makefile.in Change-Id: I29eefa599f175d98303fca8f5ccf1c8fe85b0bbc (cherry picked from commit b21140e2de219cd97cae5b7b9b988e1fd70da029) Reviewed-on: https://gerrit.libreoffice.org/22860 Reviewed-by: Tor Lillqvist <tml@collabora.com> Tested-by: Tor Lillqvist <tml@collabora.com>