summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-11-25provide UNO API for OpenCL selectionMarkus Mohrhard
Change-Id: If5eb71e9298cefdac3dda98cb1ff67fe913ad3c3
2013-11-25filter: un-break the SWF export dialogMichael Stahl
The mpResMgr is no longer initialized but still checked. (regression from 191dc43f97ed8bec78ee540676a91815cad71104) Change-Id: I8330a74e9209eaca1fee70e7b8ba332482fa0c1d (cherry picked from commit 6e4a4af525923eb6c2b24f6ac0c9936efe827ca3)
2013-11-25rhbz#1030009 Remove global XModel refStephan Bergmann
...that is apparently effectively unused since 2627bdaddc6f694dc7fc6ba347a305af0f88ee2c "INTEGRATION: CWS fwk02ea: #i28639# always used supplied status indicator" anyway but causes crashes during exit when it holds an SwXTextDocument ref. Change-Id: I542545c793855b41731de72650bf07d5748fcb9f (cherry picked from commit a7464edb0a4368db02b1298b5710cf98b17e282b)
2013-11-25Fix unoidl sourceprovider interface base and member checksStephan Bergmann
...and enable tests shared with idlc Change-Id: I422b16c9b2636835d276cc2085cb640073894c97 (cherry picked from commit 454f3f72c5d7a6f92debb4e4756e330397d507e6)
2013-11-25Updated coreStanislav Horacek
Project: help f0bcc8f9d2501082e367eb9c93f7efb4ec0e8089 add location of PrettyPrinting property in Expert Config it is hard to find it without location or searching Change-Id: I8b8b4b0bc7e0be601ba53c8c21ccb982ad745452 Reviewed-on: https://gerrit.libreoffice.org/6800 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2013-11-25EMF+: Stroke size is always supposed to be absolute.Jan Holesovsky
Change-Id: I7221311e5dee6384dc2d1c071bf6f1c61811895a
2013-11-25fdo#61272: Do the mapping correctly both for WMF and EMF.Jan Holesovsky
Turns out that for the WMF, we already had everything set up correctly, we were just overwriting the right settings with default data again :-) - fix that. Change-Id: I14b0c12b10f58eb7031f9da712dee76344c75159
2013-11-25Related fdo#61272: Revert "wmf-mm-text.diff: Fix WMF rendering, n#417818"Jan Holesovsky
This approach to WMF breaks EMF reading, need to revert it, and fix a different way. This reverts commit db1b08d217ebbdd1b0296e1da260bf314a77acf5. Conflicts: vcl/source/filter/wmf/winmtf.cxx vcl/source/filter/wmf/winmtf.hxx Change-Id: I8f779791153f2e1faa086c91b82b3e8b93304f3b
2013-11-25Related fdo#61272: Revert "wmf-mm-text-1.diff: Fix WMF rendering, n#417818"Jan Holesovsky
This approach to WMF breaks EMF reading, need to revert it, and fix a different way. This reverts commit 16eaa5e7c1208034bb3244fea9e6d9491ccb5501. Conflicts: vcl/source/filter/wmf/winmtf.cxx Change-Id: I59076d0a65d91ba3a1f3ebb48d8f7a542859d351
2013-11-25dbaccess: improve exception message when no driver foundMichael Stahl
Change-Id: I1734034e05324eb0d66fd52444b0521d4143bc12 (cherry picked from commit 7ad1c4356bfde3bf37830fa8e4b3267212473f79)
2013-11-25--with-lang=ALL build exceeds maximum # of files in CABChristian Lohmaier
so don't limit the installer to one single file, but use 2 instead Change-Id: I6fb22d217e1afe71143f0b3a5999e54eec190ddd
2013-11-25fdo#68594: Revert bnc#758621 commit.Muthu Subramanian
Reverting: 55c63ccfd460895af22e91979967cec15d80b72d Seems some other fix, fixes the bug as well.
2013-11-25winaccessibility: let CoCreateInstance calls find the componentsMichael Stahl
The COM services are not found because they are not registered in the registry via regsvr32 (doing that is unnecessary since the components are only instantiated by winaccessibility code and undesirable since that would likely register the IAccessible2 types too, breaking A11y tools) and the special manifest resource #97 that ActivateActContext() tries to load does not exist in UAccCOM.dll; this would need to be a XML manifest, the *.rgs and *.tlb that are already included as individual resources won't work. After reading ATL headers for hours it is immediately obvious that the COM components can simply be registered by a call to CComModule::RegisterClassObjects() from DllMain; this just requires actually loading the UAccCOM library from somewhere so the DllMain runs. Change-Id: Id58b754835cd2f1bcada37e5639a6b6042a42fd5 (cherry picked from commit 732ec36edfd09d2091d70c4d71b5f182fe279c45)
2013-11-25winaccessibility: fix some error handling in CAccTableMichael Stahl
Change-Id: I3c8bc6a476a6254a4ddc3a7cb0585544f3f78431 (cherry picked from commit d04c970e8f33109a1ef5c52f922a48a0ff62adb0)
2013-11-25winaccessibility: don't need 2 global pointers for AccObjectWinManagerMichael Stahl
Sadly can't use rtl::Static because it needs a ctor parameter... Change-Id: I98bbfbb4d2ef54f40a5f110527b260c0b5b01eed (cherry picked from commit ccb1e06bdb3c37c82ddc7b61135eda09fcdecae4)
2013-11-25winaccessibility: make XAccessibleAction member ReferenceMichael Stahl
Maybe it would be kept alive by AccObject::m_AccActionRef but why not play it safe. Change-Id: I03c2be04e97dcde8a177ef8dfd0d75595ab13a53 (cherry picked from commit a5e281ff0468416e5bb20b16ccac16550a83a9fd)
2013-11-25winaccessibility: CMAccessible needs only one XAccessibleContextMichael Stahl
Merge aliases pRContextInterface (unused) and pRContext; this is exacerbated by countless local variables pRContext that shadow the member... Change-Id: I6bc71911fb41a2ce2590d614020ecea36d6ab4f8 (cherry picked from commit 58ab5239868039bc9e4dff391fc0c420a2eb3d8d)
2013-11-25winaccessibility: CMAccessible needs only one member for XAccessibleMichael Stahl
Merge aliases pUNOInterface and pRef; also pAchorUNOInterface is never used. Change-Id: I1b3841a9aca9d2438b25c66c7f67d09ce13b41f9 (cherry picked from commit fd2877ee09fd4cd738769cda5de5b641f73adee2)
2013-11-25Add missing keyboard shortcut to dialogOlivier Hallot
Add missing keyboard shortcut to dialog swpossizepage.ui Change-Id: Ie1e499af05e2a08432dd7649c0ffbe9ea0a12bf2 Reviewed-on: https://gerrit.libreoffice.org/6795 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com> (cherry picked from commit f336d8f8e9e9fdc1cf04c43ab2dbdc74706a3bf5)
2013-11-25Fixed for libreoffice crashes while opening file.PriyankaGaikwad
Change-Id: I85a16e4ef8d75f19250115d5522046a968d5fc91 Reviewed-on: https://gerrit.libreoffice.org/6760 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com> (cherry picked from commit c6e333e73b811a65526628effb21636f4f420cc5)
2013-11-25Updated coreAndras Timar
Project: translations e128db6759de734c9f8e1172c128d7741744eafd
2013-11-25GPU Calc: a test case for unrolling SumOfProductI-Jui (Ray) Sung
AMLOEXT-245 BUG Change-Id: Ia8756af26c765820a04137a87f6681447dd18efd
2013-11-25GPU Calc: fixed a SUMPRODUCT problemI-Jui (Ray) Sung
ALMOEXT-245 Change-Id: Iedbbdc612232a939b2270e373313c872de831c20
2013-11-24Add lo_LA (Lao) dictionary fdo#71939Andras Timar
Change-Id: Idbc102453aa47a71d7b550eb8a7b65c25825111e
2013-11-24Updated coreRobert M Campbell
Project: dictionaries c4659a9bbbe9a35cedcf29c11631d78ec09ebd17
2013-11-23Correctly check getFileURLFromSystemPath() successKhaled Hosny
Change-Id: Iadc34171235fec2d6aafd601f62a0bff8ed5b3ee
2013-11-23Make TTC fonts work againKhaled Hosny
osl::File::getFileURLFromSystemPath() does not return a boolean. I wonder how this worked before, if it worked at all. Change-Id: Iadc0e06236f43c24cbcd42e4fd79ac9116a58c13
2013-11-23Simplify this code a bitKhaled Hosny
Change-Id: I591484788c5bcb9b9cde9696b149ede7298015a5
2013-11-23resolved fdo#61946 use correct TabDelta for UpdateReferenceEike Rathke
The sheet delta was reverted resulting in the references not being updated when conditional formats were copy-pasted between sheets. Saved to .ods then was an identical calcext:target-range-address as for the copied source range. Change-Id: I038b58f20f71ff1393dccafa3021dac02cd69e4b (cherry picked from commit ef8e0beba442f58abe3bc77f6f55fc6109025dd4)
2013-11-23fastparser: avoid allocation and conversion of elementnames we don't need.Michael Meeks
Change-Id: I4c09aaa12b53181e50662de2721d170c195c7c86
2013-11-22GPU Calc: Testcase for Sums of Product that have out-of-bound windowWei Wei
AMLOEXT-244 BUG Change-Id: Iefce62484b2189b37b747bfd4b739115dafbc40d
2013-11-22GPU Calc: Sum of product doesn't check out-of-bound accessesWei Wei
AMLOEXT-244 FIX Change-Id: I5f49f7acccaabd2a97d8ac4bfba4b973889278f1
2013-11-22GPU Calc: test case for parallel count()I-Jui (Ray) Sung
AMLOEXT-243 BUG Change-Id: I97e2dab35b40f4f7fcd4975ae7c5907e97e19fd9
2013-11-22GPU Calc: fix a parallel COUNT() problem when input vector size > 512I-Jui (Ray) Sung
AMLOEXT-243 FIX Change-Id: I1a356f9a591c1f5a99d2675065b63a7673217ac6
2013-11-22init nRotation [-Werror=maybe-uninitialized]Eike Rathke
Change-Id: Ia48c8e3ef9dfb1f1f881845813ada518231352f2 (cherry picked from commit 44397a6f36ae6db697899c4595afe617e5fbe8ca)
2013-11-22oox: avoid per element allocation and freeing of OUStringBuffers.Michael Meeks
Change-Id: Ie4d4d7740ae002422f73a3bfc57e1fe1ad67e50f
2013-11-22Fix unoidl sourceprovider polystruct argument checksStephan Bergmann
Change-Id: Ib7ee3188b87b9b4216214b65347e34970e1b92a5 (cherry picked from commit bd21de41e30e47f7d1c2ff6d4bdcc4a7f0e72103)
2013-11-22Fix unoidl sourceprovider typedef checkStephan Bergmann
Change-Id: I7faa689c803f83687cfcc39dc7c4fd145584e849 (cherry picked from commit add28638db1bf367751c98631624c6dd7adc6c22)
2013-11-22Fix unoidl sourceprovider recursive struct/exception member checkStephan Bergmann
Change-Id: Icd156745da10011611590b6b62cd0ec2df2b1266 (cherry picked from commit 39831b1d17abd360b1d50c8820f09cfd095be337)
2013-11-22Fix unoidl sourceprovider "published" checksStephan Bergmann
Change-Id: I93b9fcc2b20ed7a7c160a9ef3294b6e578678f53 (cherry picked from commit 87dc22287604a702b584cd8a9272870421b8b6d1)
2013-11-22Published FormController cannot reference unpublished XFormOperationsStephan Bergmann
...and the hack to locally introduce a bogus pupblished forward declaration of XFormOperations with which this has been worked around in cf5c36912390b2f6018f57f79085ab1fa88a08d6 "INTEGRATION: CWS dba23b: work around idlc limitation, which does not allow to refer unpublished interfaces as optional entities in published services" no longer works in offapi/type_reference/offapi.idl. So given FormController is a (deprecated, even) old-style service (i.e., little more than glorified commentary), the best fix probably is to demote the problematic optional property to a comment. Change-Id: Ia38483c817dc1762ba73315abcd4f9f063db3093 (cherry picked from commit 75144495ee77a41e5a94d9e21b7f6aaf16a80b4f)
2013-11-22Modern UNOIDL parsers ignore preproc lines, so replace #if 0 with commentStephan Bergmann
Change-Id: If46e98f54b916c312193ef7d931e120c53d047c0 (cherry picked from commit 71af2d5885eba0b82e6e0f3938bf08a9346776ff)
2013-11-22constant.tests idlc/unoidl diffs:Stephan Bergmann
* byte only accepts singed literal values < 128 now Change-Id: If557b5212e349fe115948f72b5558fee338db659 (cherry picked from commit 2abcff25137c7c9af007554c97a4512319ec2e4d)
2013-11-22attributes.tests idlc/unoidl diffs:Stephan Bergmann
* global exception names no longer clash with local names * repeating the same exception in a raises spec is caught now Change-Id: I388aae4de59bddc1c69bf4c263297d0b92b47106 (cherry picked from commit 61c092497ebbc22f1ce92e185f9fb66353bb9172)
2013-11-22Add exectest.pl OLD-/NEW-FAILURE for deliberate idlc/unoidl diffsStephan Bergmann
Change-Id: I653522d8ebaac3329f368c102d14041c6b49d41d (cherry picked from commit c5bb39d64d26398e9ebf8f973059a887c271052f)
2013-11-22cp#1000016 DOCX/RTF import: fix RemoveLastParagraph() on WindowsMiklos Vajna
Change-Id: I3f9d69ddbb2144c60a724e4242128b65ae167455 (cherry picked from commit a56bfe734a7bed40a175e0eeb7e86e7006a83f83)
2013-11-22fdo#67802: Fix PS printing of non-CTL text with ligaturesKhaled Hosny
The GlyphSet::AddGlyphID() was messing with glyphs of characters that can be converted to Windows-1252 encoding, discarding whatever glyph it was asked to use and using a random glyph that is supposed to belong to the converted character. For ligatures this means the ligature glyphs was discarded and the glyphs for its component was used, but this broken for just any glyph substitution. The code makes no sense at all, apart from the fact that it is verbatim copy of GlyphSet::AddCharID() since 9754ad8d979557ea03cbfe04708b62b698d1276c and just happened to work because we did not enable ligatures and other typographic features for non-CTL text before. Change-Id: I764f0b40f8acf61eae38a9038b0666d711c04a9d
2013-11-22more tests for new Excel 2010 functions, fdo#70798Eike Rathke
Change-Id: If996e57a616adfb21f09463ac305e64c4e2fa4cc (cherry picked from commit 52999789258aa7cfde8d01ff7e8a03a0f53278db)
2013-11-22fdo#71722 add Excel 2010 functionsWinfried Donkers
EXPON.DIST, HYPGEOM.DIST, POISSON.DIST, WEIBULL.DIST Change-Id: Ib9f648739ec0af90cdf2f576c7f548a6acb7b4a6 Reviewed-on: https://gerrit.libreoffice.org/6748 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com> (cherry picked from commit e434c1ce0557454ef4cdd98435c5c0b1d5181bcf)
2013-11-22fdo#71350 fix incorrect calculation of Excel function CONFIDENCE.TWinfried Donkers
Change-Id: I94202bebcc7deded51636f4bf7f203254a31931f Reviewed-on: https://gerrit.libreoffice.org/6751 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com> (cherry picked from commit d8a023d41ec85538bc0103c063ee722e1de67c2f)