summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2014-04-20Version 4.3.0.0.alpha1, tag libreoffice-4.3.0.0.alpha1libreoffice-4.3.0.0.alpha1Christian Lohmaier3-0/+0
Change-Id: I39d2c181787fa552f24afc679c4e10098fdc7ac5
2014-04-20bump product version to 4.3.0.0.alpha1Christian Lohmaier1-1/+1
Change-Id: Iaab85715bd4390001d3606907ffc037952421e07
2014-04-20Updated coreChristian Lohmaier1-0/+0
Project: translations e3821ba029d6e69b786157d13984ca5af908bb31
2014-04-20Move VCL text line functions from text.cxx to textline.cxxChris Sherlock3-967/+1069
Change-Id: I3adea9cd08c86f676e6af525e5a7caf430c96d8d
2014-04-20fdo#74702 Only VirtualDevice should handle the Word ext lead bugChris Sherlock4-11/+27
In #i60945# it was discovered that Unix's leading external font spacing causes problems with the display of documents. Therefore, the reference device implemented a workaround, which was to set the spacing to zero. However, the reference device is a VirtualDevice, so it should really be handled there, not in OutputDevice. I have added a new protected function to OutputDevice, GetFontExtLead() that handles this. Change-Id: I1b84ee7d9f7ae96841b441b52705e67c8115ae5c
2014-04-20java home for JDK 1.8 can also be found in registryChristian Lohmaier1-1/+1
Change-Id: I0179696962c300792f75bf41171514be3ddaa76e
2014-04-19coverity#738628 Uninitialized scalar fieldDavid Tardon1-0/+6
Change-Id: Ib14384f8212ae03bee4bb5ea9746681287323be4
2014-04-19coverity#738629 Uninitialized scalar fieldDavid Tardon1-0/+4
Change-Id: Ic3bed7a422ba2073a32aefc6d44a7a4908fae8e0
2014-04-19coverity#738940 Uninitialized pointer fieldDavid Tardon1-1/+12
Change-Id: I467c9ad530b376fd2a23110e4ff157ad03d23d57
2014-04-19coverity#982450 Explicit null dereferencedDavid Tardon1-1/+1
Change-Id: I7097ce6ffc86038966a2f436300f49b51ff81977
2014-04-19make sure nEnd is after nBeginDavid Tardon1-2/+2
Change-Id: Ic3cf41b21755c5f1e795ed3acb97ff83512b7613
2014-04-19coverity#1202818 improper use of negative valueDavid Tardon1-4/+7
Change-Id: I2b5fed2f9f9d6a4aa6a8087843fa1805c2d1ffe4
2014-04-19WaE: Unreferenced function definition [loplugin:unreffun]Tor Lillqvist1-1/+1
Change-Id: Ibac16b109d9024a75fc6045d5d55fb5d21eee70a
2014-04-19cpplint: [readability/utf8] Line contains invalid UTF-8Julien Nabet5-7/+7
Change-Id: Ifb8793c3a1647bfa0d02e471419acb434dcea951
2014-04-19Disable gltf support on windows until it has building problems.Zolnai Tamás1-1/+1
Change-Id: I6469c4aa0367a420079c0862e7db40064189a78a
2014-04-19Introduce a new building flag to enable/disable gltf supportZolnai Tamás1-1/+5
Enable it by defautl excepting android and ios. Change-Id: I7798661ad7e470ad1eb91060ec21ba1de3979a4b
2014-04-19configure.ac: remove duplicated flagZolnai Tamás1-1/+0
Change-Id: I95ee315fe1c10ae95ea0fe940eca4c06a6326447
2014-04-19avmediaogl: build depends on ENABLE_GLTF insteadZolnai Tamás3-3/+5
Change-Id: I03d0d7c0446b6316e388ae717aded6bb7dcc88f1
2014-04-20Upgrade doxygen configuration fileChris Sherlock1-750/+1113
Change-Id: Ia53ef2130c03f36909f4ee47a60077fe74e0f481
2014-04-19coverity#440822 dereference before null checkDavid Tardon1-110/+113
Change-Id: I3531f200c00f27fd2109041b58969ccccb7465ff
2014-04-19coverity#735764 Unchecked dynamic_castMiklos Vajna1-1/+1
Change-Id: Ic7dc70c1052f5ab04a3e1795549ca43e2e0f2587
2014-04-19vcl/source/outdev/blend.cxx - indent function in anonymous namespaceChris Sherlock1-24/+24
Change-Id: I0a82c500b06531ecce35984d7dc588bb9f7dbd04
2014-04-19Change ImplDrawAlpha to DrawAlphaBitmapChris Sherlock2-5/+5
OutputDevice has a public function ImplDrawAlpha, but that just draws a bitmap with an alpha layer. It's really a public function, though not yet used outside of OutputDevice. However, the name should really be the same as SalGraphic's function which is DrawAlphaBitmap. Change-Id: If2716c1a1a194079d6514a1d30d8b05f9fda664c
2014-04-19fdo#77667 Remove gcc3 workaroundChris Sherlock1-3/+2
It appears from previous commit log entries that GCC 3.3 and below had problems handling instantiated objects as parameters. Therefore, we don't need this aNullPt, so removing it. Change-Id: I8f88067628078e5b57ed76b8b7dfdb76baa3b2ea
2014-04-19writerfilter: fix indentation in rtfsprmMiklos Vajna2-76/+96
Change-Id: Id81cb97033e616acf071f386630b49ccb83dfedc
2014-04-19Refactor OutputDevice::DrawImage()Chris Sherlock2-40/+17
There is a fair amount of code duplication going on here. If no valid Size is passed to the function then we should pass on Size(), then in the function we call we should check to see if there is a valid size. In fact, this is something we should probably check for anyway, so if anything this makes the code slightly more robust. Change-Id: If7b55e5505ada6739375c69b123cf1e34a0fa66d
2014-04-19-Werror,-Wunused-resultThomas Arnhold1-1/+2
Change-Id: I8ec20e6a391bd835097af9be44a174e8e7b19cce
2014-04-19Remove gcc3 workaround here tooThomas Arnhold1-30/+15
Change-Id: I5626c31ebc2c2a1a3946e88f30c64b5442284842
2014-04-19fixincludeguards.sh: some smaller dirsThomas Arnhold154-382/+382
Change-Id: Ic25bd678dc299627299b22145efd7bebcf2b39d0
2014-04-19fixincludeguards.sh: swThomas Arnhold225-478/+479
Change-Id: I2b0625453ddc1c4cc2fa1626efff07beda17caf6
2014-04-19fixincludeguards.sh: include/ooxThomas Arnhold16-37/+37
Change-Id: Ie0aca6c4fdfa4b7e4a902983c751a6d13d85f230
2014-04-19fixincludeguards.sh: idl and idlcThomas Arnhold43-123/+123
Change-Id: I665e901eb6f65308b8f130da1c6da95bc3255490
2014-04-19fixincludeguards.sh: slideshowThomas Arnhold141-417/+417
Change-Id: Id966e572afb403fd652a7a9b3936e1cfae4581b9
2014-04-19fixincludeguards.sh: packageThomas Arnhold38-78/+78
Change-Id: Ia66d825baad3315c34bd579dc804f607bc6be30b
2014-04-19fixincludeguards.sh: lotuswordproThomas Arnhold211-425/+425
Change-Id: Ic3e01b5ecfb159d88c7c849a85ff612cdda5b418
2014-04-19fixincludeguards.sh: ucbThomas Arnhold104-246/+246
Change-Id: I6a5994003cef7ed1672002933a5240160cff559d
2014-04-19fixincludeguards.sh: improve regexThomas Arnhold1-1/+1
handle the following expression correctly: endif /* !INCLUDED_TDOC_DATASUPPLIER_HXX */ Change-Id: I0c8b31464c9545bdbbb1371f13134f2cc89aad71
2014-04-19fixincludeguards.sh: extensionsThomas Arnhold145-391/+391
Change-Id: If652bce4cf7621795b084bcbc0aa4c46dd903878
2014-04-19fixincludeguards.sh: scThomas Arnhold800-1732/+1739
sorry, huge one...
2014-04-19fixincludeguards.sh: reportdesignThomas Arnhold109-315/+315
2014-04-19fixincludeguards.sh: xmlsecurityThomas Arnhold55-133/+133
2014-04-19fixincludeguards.sh: writerfilterThomas Arnhold76-196/+196
2014-04-19fixincludeguards.sh: connectivityThomas Arnhold312-874/+874
2014-04-19fixincludeguards.sh: basicThomas Arnhold2-4/+4
2014-04-19fixincludeguards.sh: basebmpThomas Arnhold1-3/+3
2014-04-19fixincludeguards.sh: basctlThomas Arnhold46-138/+138
2014-04-19fixincludeguards.sh: accessibilityThomas Arnhold66-183/+183
2014-04-19fixincludeguards.sh: comphelperThomas Arnhold6-15/+15
2014-04-19fixincludeguards.sh: formulaThomas Arnhold6-15/+15
2014-04-19fixincludeguards.sh: cppuThomas Arnhold13-26/+26