summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-01-25coverity#440824 : Dereference after NULL checkNorbert Thiebaud
Change-Id: Ie5c5c687c4a6dbe07abdf2f8ad0dfedb39c7abf0
2014-01-25coverity#4407301 Dereference after null checkNorbert Thiebaud
Change-Id: I3cbb28a65dc75ac641cac88148e36ec3a819ffc4
2014-01-25coverity#440730 Dereference after null checkNorbert Thiebaud
Change-Id: Iab8f02e3bb1e03c0ee7efdd0b47d8329d786578d
2014-01-25coverity#440240 Dereference after null checkNorbert Thiebaud
Change-Id: I1ca5e4d31ab203a0ddd5e98928f5046f5fffb485
2014-01-25coverity#440167 Dereference after null checkNorbert Thiebaud
Change-Id: I05bb7592600ab157d7a5e9dc6280168519d7b5bd
2014-01-25some more CMYK -> CYMKThomas Arnhold
2014-01-25OOXML validation fix for chartsMarkus Mohrhard
smooth entry was written too early Change-Id: I200f67dd70c8efa0f46fbe177add36b6c80a96f4
2014-01-25drawingML import: parse shape text run inside w:sdt and s:sdtContentZolnai Tamás
Change-Id: I6dc5939ae66967785cdc5dab318024b8cb17d1cd
2014-01-25Related fdo#65826: Set StartCenter's min width to display one column of docsZolnai Tamás
If there is document to display. Otherwise set minimum to the width of greating background text. Updating minimum size is needed only when the list is cleared. Change-Id: Ic089571fd21d5ab9ded0f4cde7e1aa72fd508d32
2014-01-25This yields slightly better performance.Kohei Yoshida
Change-Id: Ibc063e762f0fde10b3387c52117e4010aca61d10
2014-01-25Stop leaking all ScPostIt instances.Kohei Yoshida
And re-implement correct swapping of two ScPostIt instances during sort. Change-Id: Ifbf120aae594342ae0b7c5760f771c53092c8022
2014-01-24Optimize copy-n-pasting of single cell replicated over a range.Kohei Yoshida
This is a very common operation. Let's speed it up a bit. TODO : Handle cell comments. Change-Id: I5442bf19008475a9427b889c1eb641cacd8ff161
2014-01-24Use this scope tool instead.Kohei Yoshida
Change-Id: I44d1762bb532fac403963bdebaa98228eebe8f05
2014-01-25fdo#68876: sw: layout should never care about IsFirstShared()Michael Stahl
With 75084f6c42c27dc95418df9cefed2fddfb26000e the layout should put the "first" frame-format on every first-page of a page style; unfortunately SwFrm::OnFirstPage() was not adapted with this change and that results in various misbehaviour in the layout. Change-Id: Ia31add0d72ca581963b7e8e40c3ea932361b7fd6
2014-01-24pywizards: update callRemote methodsXisco Fauli
Change-Id: Id4a335b19f48738d0f2a02e3660e57701bbc7ef2
2014-01-24dbaccess: disable hanging close() for nowMiklos Vajna
I don't know why it hangs, but seems even without closing, the test still fails after reverting fc9080a0c60f263d00eb71111fcda72b3c0a2ebb (fdo#67685 open xSourceLibrariesStor only when needed, 2013-08-02). Once the test no longer hangs, of course feel free to add this back. Change-Id: If124b7f57a8fa2d522ebdb448366aec6f1ff4987
2014-01-24writerfilter: refactor to avoid redundant Papx class in doctokMiklos Vajna
Change-Id: Ic65e750bab99fb6b4c862418ccc53aa4b1f1298e
2014-01-24Replace "cymk" by "cmyk"Julien Nabet
See http://en.wikipedia.org/wiki/CMYK_color_model Change-Id: Ie0264694f7daf6c5de1c7c056e16e10bda2b24ac
2014-01-24coverity#1158202 Dereference null return valueCaolán McNamara
Change-Id: I7a39b28cd295d0ab2dd4ba54fd9ff312f89764b7
2014-01-24coverity#1158381 Uncaught exceptionCaolán McNamara
Change-Id: I617b2e1a501dd2df73aa2201fa8e8e43c814d66f
2014-01-24coverity#1158382 Uncaught exceptionCaolán McNamara
Change-Id: Icd86cfa4ff0c4c26de0f4f9258646353e718823e
2014-01-24coverity#1158385 Uncaught exceptionCaolán McNamara
Change-Id: I204efd1c17d07f4fb24be9783d78173a57ef4ea9
2014-01-24coverity#1158401 Uncaught exceptionCaolán McNamara
Change-Id: I5066b2dbf935157869fdec5ae588df649e63b6ba
2014-01-24resolved fdo#73235 initialize reference flagsEike Rathke
References initialized via ScSingleRefData::InitAddressRel() and ScComplexRefData::InitRangeRel() didn't have their flags memory initialized, leading to tab/col/row reference may had been flagged as deleted or other quirks. This also fixes fdo#72605 Change-Id: If5e9f4c3a9171f068f7986d2bd6b4b312df3c37e
2014-01-24ooxml: Fix incorrectly named shape type in translation tableJacobo Aragunde Pérez
Change-Id: Iad49c54e29afb4a5fa0198d5300ca63dcb360874
2014-01-24bool improvementsStephan Bergmann
Change-Id: I5e597c32bf6a2c44fe3b3dc1d67ac0202d556387
2014-01-24Replace "known-good" dynamic_casts with static_castsStephan Bergmann
...it avoids false warnings about unchecked dynamic_cast results from static code analyzers, and potentially makes the code a little faster, too. (Most of these dynamic_casts were kind of a leftover from a very early design that dispateched on Node type via dynamic_cast instead of a Node::Kind, but which was much too slow.) Change-Id: I8db08a1c35783f8ea6c51eed55b11faa2d958807
2014-01-24Revert "coverity#704575 et al. and clean-up."Stephan Bergmann
This reverts commit 753eeac8a641d70ad0c44bb15fa8949ac991f5d9, which added bogus if (... != 0) checks after dynamic_casts that cannot fail, making the code now look as if it was expected that those casts can fail and the code is prepared to handle it (which it is not). Silencing the false coverity reports will be addressed in a follow-up commit. (That commit unfortunately mixed those changes with mass cosmetic changes.)
2014-01-24Translated German commentsStefan Ring
I've tried to translate them as faithfully as possible. Some of them really don't seem to make any sense at all. There are quite some incomplete sentences, and they are sloppily put together in general. Change-Id: I3d215343de4d3b33a609f3dc52e8cfa7cd8c1d67 Reviewed-on: https://gerrit.libreoffice.org/7599 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-01-24German translation: translated assertion-/exception-like stringsStefan Ring
Change-Id: I5146951c6a1e569f7c7b36fc734c1c69f0b994f3 Reviewed-on: https://gerrit.libreoffice.org/7598 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-01-24Add file extensions from MSVS to gitignore fileAnderson Roberto
Change-Id: Icb976111a3442eff2cd3ba0b015eef7067fe7006 Reviewed-on: https://gerrit.libreoffice.org/7582 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-01-24fdo#39468 Translate German commentsPhilipp Weissenbacher
Change-Id: I95d10209db3701c2511213c9830191fd5a797889 Reviewed-on: https://gerrit.libreoffice.org/7574 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-01-24fdo#63154 Removed unused solar.h reference in chart2Alexandre Vicenzi
Change-Id: I4a16cd5492ced3c067fb037f31cb74a6d8068de1 Reviewed-on: https://gerrit.libreoffice.org/7603 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-01-24Fix FTBFS when TDE integration is enabledTimothy Pearson
Change-Id: Ia44e15044879fbbc169f7097a6f5f14346a0cf39 Reviewed-on: https://gerrit.libreoffice.org/7626 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-01-24Add cppuhelper.shlibTor Lillqvist
Change-Id: I61579c7f84bb3df0d9c493cb93b47a00b0d174b4
2014-01-24Log what we are about to "load" in the DISABLE_DYNLOADING caseTor Lillqvist
Change-Id: I75b9511e82d57da453527e7bc497ec1523ab2216
2014-01-24Produce a ld map file, tooTor Lillqvist
Change-Id: Ieded05eb402e3d87ad039cd06b86e99114ff5afe
2014-01-24Include boost/ptr_container/ptr_vector.hpp at the beginning again.Matúš Kukan
This might fix "workdir/UnpackedTarball/boost/boost/ptr_container/detail/static_move_ptr.hpp:154:46: error: macro "check" passed 2 arguments, but takes just 1" ? Change-Id: Ie8504149f7d2853a631b47186f5ca46cdf96b79e
2014-01-24undef check to progress mac buildCaolán McNamara
Change-Id: Ia13df162916c115390b87b027e6f9a1dbb72b7d9
2014-01-24coverity#736909 Allocation too small for typeCaolán McNamara
Change-Id: I330ebdfd94d0c30b40e180e307d7543c09fd334b
2014-01-24coverity#736908 Allocation too small for typeCaolán McNamara
Change-Id: Ic41c5071957f5e95322971f8ec3ef864edecdb20
2014-01-24coverity#706117 Allocation too small for typeCaolán McNamara
Change-Id: I1bb2bd26e533cf5b7de5225f0bcf323446e69f63
2014-01-24coverity#705670 Resource leakCaolán McNamara
Change-Id: Ib89a580127d91e9d7a23b998df3cd100246bf289
2014-01-24coverity#1028320 Uninitialized scalar variableCaolán McNamara
coverity#1028319 Uninitialized scalar variable coverity#707576 Uninitialized scalar variable coverity#707575 Uninitialized scalar variable coverity#707568 Uninitialized scalar variable coverity#707567 Uninitialized scalar variable coverity#707566 Uninitialized scalar variable coverity#707565 Uninitialized scalar variable coverity#707564 Uninitialized scalar variable covierty#707563 Uninitialized scalar variable Change-Id: I62c39b0e054f209117aab926d87339dc00a531f0
2014-01-24coverity#708575 Uninitialized scalar fieldCaolán McNamara
Change-Id: I8bf17ed4d0def478168311b82faffc7eed74fea4
2014-01-24coverity#708212 Uninitialized scalar fieldCaolán McNamara
Change-Id: Ib87858db74f393c1e52a78db822cb8e906cc57e9
2014-01-24coverity#738922 Uninitialized scalar fieldCaolán McNamara
Change-Id: I22ca430d8737834655e6f8c30ecf489a50e00ba1
2014-01-24coverity#738923 Uninitialized scalar fieldCaolán McNamara
Change-Id: I37e6fac75c5919a187c49490814d409d4c44006b
2014-01-24coverity#738921 Uninitialized pointer fieldCaolán McNamara
Change-Id: I607a8d75b9ee60015a382ee4111c5ca8bac6a1f8
2014-01-24coverity#735339 Unchecked return value from libraryCaolán McNamara
Change-Id: Ia6567cb6f779669c738469ba68b7ad675e99d71a