- 17 Haz, 2014 40 kayıt (commit)
-
-
Andrzej Hunt yazdı
Change-Id: I2b6f33eaf12343c7da1328a932eb703bb4e4ef6f
-
Miklos Vajna yazdı
CppunitTest_sw_ooxmlsdrexport's testAnchorIdForWP14AndW14 would fail without this, when "shape with text" is imported as "shape with textbox". Change-Id: I8705aee16270aa68416f0c830c429880fc76d85d
-
Matúš Kukan yazdı
Change-Id: Ic63372285fecb6f1be22e92c36cdb6f94733f5c1
-
Michael Meeks yazdı
For large documents we create and destroy a large number of non-poolable SfxPoolItems, which get inserted into and removed from a vector. Unfortunately the performance of this (depending on pattern) is O(N) and this insert/remove/extend pattern can happen per text span we insert. This patch makes this O(const) via a hash. This gives a 5x speedup for the above bug; 176s to 34s or so, and moves the remaining performance issues elsewhere. Unfortunately, we have to retain the ordered array to keep the binary file format code (used for editeng cut-and-paste) in place, so have to keep both a hash, and an array, and a list around for free slots. cf. fdo#79851 where there is a start at removing that. This wastes space; but not that much - for a large open document collection we have O(100's) of SfxItemPools, and O(1000's) of SfxPoolItemArray_Impls; having fixed fdo#79851 we can consolidate this. Add skeletal unit test; translate several German comments; remove un-necessary include. Change-Id: Ie0de32b1a29217560c5591c71a6cd4e26d39a531
-
Stephan Bergmann yazdı
...no reason to not have it enabled for URE C include files and what little real C code is still left. (But note that Clang ignores that warning.) Change-Id: Ia6940f9f940a0c226e9b724331d65c9862ce32e6
-
Stephan Bergmann yazdı
Change-Id: I1bfdd865429cc6fa89ea3b6b4fc132b5d5b57b0d
-
Stephan Bergmann yazdı
Change-Id: I80fd6b112134ab2b0e4a592f60a21c7c177b4b01
-
Stephan Bergmann yazdı
Change-Id: Id0a13af0c0d1aa0b6a21edde0ec7f97730a1c912
-
Stephan Bergmann yazdı
Change-Id: Icb1ba7f7068f60c4bd5eda7002415214b3d885f3
-
Heena Gupta yazdı
Change-Id: I2b932c9f09a010a4f999707fb6299c392a89550a Reviewed-on: https://gerrit.libreoffice.org/9806Reviewed-by:
Muthu Subramanian K <muthusuba@gmail.com> Tested-by:
Muthu Subramanian K <muthusuba@gmail.com>
-
Robin Kumar yazdı
Change-Id: I2590bd8b0d0c1d853caead60cf3af1b865d7fed7 Reviewed-on: https://gerrit.libreoffice.org/9805Reviewed-by:
Muthu Subramanian K <muthusuba@gmail.com> Tested-by:
Muthu Subramanian K <muthusuba@gmail.com>
-
Takeshi Abe yazdı
... which should be freed even if GetError() != 0 Change-Id: Ifbf72aa17f8bcbdcc3b1504a105aa32e94397ee3 Reviewed-on: https://gerrit.libreoffice.org/9807Reviewed-by:
Caolán McNamara <caolanm@redhat.com> Tested-by:
Caolán McNamara <caolanm@redhat.com>
-
Caolán McNamara yazdı
also coverity#983450 Change-Id: I43f88005ab130f74df2316f51ab898b112002044
-
Caolán McNamara yazdı
also coverity#736888 coverity#736889 coverity#736890 Change-Id: I3e0d11d12c7da17297ba827f8125b9d99680121b
-
Caolán McNamara yazdı
Change-Id: I8e6a81b6c1605bd1be33f5f8d75d2472a39361d4
-
Caolán McNamara yazdı
Change-Id: I69df0aa6091263cbb6e500a5015915c6678764ec
-
Caolán McNamara yazdı
Change-Id: Idb9c4aa6475fcd9edd0d76c06509df182bd2111c
-
Caolán McNamara yazdı
also coverity#706048 Change-Id: I93caf413db4582c8b2cdfbcf2358027c03ed113a
-
Caolán McNamara yazdı
also coverity#706042 coverity#706045 coverity#706046 Change-Id: I173603a638ef3e2d9ca358a4d4ba111910fac05f
-
Caolán McNamara yazdı
Change-Id: I363c90a71225744bacd0bedccf6938da63e0428f
-
Caolán McNamara yazdı
also coverity#706000 coverity#706001 coverity#706002 Change-Id: Ib970a4956fcf8362b8e3f9ae859c374c5fc8a545
-
Armin Le Grand yazdı
toolbar combination (cherry picked from commit 0ce4a90e) Conflicts: include/svx/fillctrl.hxx svx/source/tbxctrls/fillctrl.cxx Change-Id: I9a1b2490a7e9285559dddd4df7fb20c2216fd450
-
Miklos Vajna yazdı
Change-Id: Ia13c3d5657c32b89e200ede572d4615b833374de
-
Miklos Vajna yazdı
Change-Id: Idb4807a58b6008afeb3e26d03b699671c0b88f7c
-
Miklos Vajna yazdı
We used to write out a custom dash definition all the time, even in case it was imported from a dash preset. Recognize at least "dash", and write that on export if the parameters match. Change-Id: Ifaaec51be9ecf1e7667a8c8f85fbd4fb9636a325
-
Matúš Kukan yazdı
Change-Id: Ife852a6c7c360c66a7d7d5b144f18898398505dd
-
Matúš Kukan yazdı
If line height is smaller than text height, we still want to see whole first line, so add the difference where necessary. This also helps to see paragraphs as separate to each other. Change-Id: I51a87edf0cc03d5b5e130290c90347099a581d4e
-
Matúš Kukan yazdı
SfxItemSet::MergeValue changes some items from SFX_ITEM_DEFAULT state to SFX_ITEM_SET which I think is a bug but this patch avoids the problem too. The issue was: visible changes in some tables, after changing e.g. borders spacing, because the cells had wrong SfxItemSet after the process. Change-Id: I676b211e1a4a1d7341c385d63503aa740718ed5d
-
Caolán McNamara yazdı
Change-Id: Ice7a4802605fbe59dfb24a27408106756a3494ba
-
Caolán McNamara yazdı
Change-Id: I3bb5ecb07d859a05337884a5b29d991b46382b48
-
Caolán McNamara yazdı
Change-Id: I3837f316a4b73eb508bfd4fca97fa741080df8c0
-
Caolán McNamara yazdı
Change-Id: I1d06c7a6a61556c2b501a16c224ccc6fe52307d0
-
Caolán McNamara yazdı
Change-Id: I531891fa1cce10a331dd651ee9ce52d1f8d0c169
-
Caolán McNamara yazdı
someone's odd ": ;" habit Change-Id: I4a3e3b89bb31764056c844286561e31ae4621036
-
Caolán McNamara yazdı
Change-Id: Ifd9a8ea49b48e81cdff859d2659fbd4d828afa90
-
Caolán McNamara yazdı
Change-Id: I790a7bed0a2ac77c452638349008f4a34fd4ad0c
-
Caolán McNamara yazdı
Change-Id: Iec100b86e2952a5efe4fa52bd85fbc00b51f78c3
-
Caolán McNamara yazdı
Change-Id: I7aacf97a32360ea3c7e17e19d7f5e51e96fcc070
-
Caolán McNamara yazdı
Change-Id: Ibfbc85562d30c541eada430759a0bda9305d9850
-
Caolán McNamara yazdı
Change-Id: I5519b552507ab81e51f81996835467d353277a18
-