summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-11-04Math: Add new colors in the SidebarMarcos Paulo de Souza
Regine add new colors to Math in fe5840aab17e366749c373e4f8683e06e40b4b05 and this commit just take those new colors and show in the Math Sidebar. Change-Id: Idd67cf4a04b2855970b115aac8d15d6506f73298 Reviewed-on: https://gerrit.libreoffice.org/12239 Reviewed-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com> Tested-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com>
2014-11-04mark as noncopyableTakeshi Abe
Change-Id: Ic464974087f9f8fb161aaffde232668ba01c2f62
2014-11-04include <list> where neededTakeshi Abe
Change-Id: Ia6784bf95d9d0c57b79bdf7373f4836709563b7a
2014-11-03vcl: Allow SalGraphics to draw gradients nativelyChris Sherlock
The aim of this patch is to allow for native gradient rendering in SalGraphics (i.e. let OpenGL do this natively). It is a two step process: 1. I need to allow gradient draw into SalGraphics, however the current completely intertwined with the metafile code in OutputDevice. I am seperating the gradient metafile code from the gradient drawing code. 2. After splitting the metafile stuff from the actual gradient drawing, I am now able to call on SalGraphics::DrawGradient(). This just calls on SalGraphics::drawGradient() which returns false if there is no way of drawing native gradients, and true if there is. If false, then we use OutputDevice's DrawGradient() functionality. Change-Id: Ibaaabe13b76a8e7a037d9f751b5f662653a50566 Reviewed-on: https://gerrit.libreoffice.org/12119 Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com> Tested-by: Chris Sherlock <chris.sherlock79@gmail.com>
2014-11-03fdo#82430: MSVC build: disable a few more cases of SSE2 in externalsMichael Stahl
Change-Id: I8f0db23d1f9ba6b9fc3c8b64b32822ba8166428f
2014-11-03odk: disable MSVC warning C4996Michael Stahl
Change-Id: I6c2dab3b427121366bb2d39b95262311286ae371
2014-11-03fix the PCH after 8e399602ea7aa11a81d704ff6ce8e660df4205b9Michael Stahl
Change-Id: Ia5e05901a066619e0e819b3b06c0a7da3b2de536
2014-11-03sc: clean up Library_scfilt.mk duplication wrt. ORCUSMichael Stahl
Change-Id: Ide3c9987fb15112d5a4c8c2b5e15277b2579ee51
2014-11-03coverity#1242811 untrusted pointer readDavid Tardon
Change-Id: I74c29a39367e7781e5e6cf9795c7176ef599f97e
2014-11-03coverity#1242806 untrusted pointer readDavid Tardon
Change-Id: Ib92e1a22d7d25f4498272731af12c485937f38ef
2014-11-03coverity#705391: xmloff: XMLMergeElemTransformerContext misuse of enumMichael Stahl
The enum types XMLElemTransformerAction and XMLAttrTransformerAction use the same integer values so a mixture of values from these 2 in one switch is very suspicious. In the various *ActionTable arrays in OOo2Oasis/Oasis2OOo there is just one such array that mixes values from the 2 enums, and that is just the values that coverity complains about. The XML_ETACTION_EXTRACT_CHARACTERS was added at a later date in commits 8d374c039e7d349141befe3c9ef97f82f42bfa7 2685b93a6a23867baa4df265bb0cc35abaf76c0e 7d2405a54d13f68a35dfc5f619ad4bdb0b761856 c276550e07f8078fe9345985f70e8384d930a83f ...but it turns out that the XMLAttrTransformerAction ones are handled in StartElement() and ProcessAttrs() methods but the XMLElemTransformerAction ones are handled in CreateChildContext() methods so probably the XML_ATACTION_MOVE_FROM_ELEM* values are in the wrong enum. Change-Id: Ib1791f6eafac4fb1e99334f41c17a90cfb076359
2014-11-03coverity#735452 Logically dead codeCaolán McNamara
Change-Id: If50b62e63160c4a26fe97b6fc59494339a566188
2014-11-03coverity#982297 EBCDIC-related cleanupCaolán McNamara
Change-Id: I8da7911c342ffe114d7b25b996602aabed7aa1ed
2014-11-03coverity#1209010 Unchecked return valueCaolán McNamara
Change-Id: I92c2472a34aca9f7f1a617666607040cadb0b643
2014-11-03coverity#735641 Division or modulo by zeroCaolán McNamara
Change-Id: I6055f85289ca7c701a70dc3aba8dc354c475e440
2014-11-03some coverity false positive markup effortsCaolán McNamara
Change-Id: Id17c3426cb4a5913881201a0bf2f569ca5002303
2014-11-03add some more kill paths to cppunitCaolán McNamara
Change-Id: I8610e99aecc725e349976746af6c8bd560ba2ffa
2014-11-03coverity#1250408 Division or modulo by float zeroCaolán McNamara
Change-Id: I64c0d1cb4c3182c03a7d7660c4736f665fc5f3dc
2014-11-03coverity#1209529 reorganize to silence Explicit null dereferencedCaolán McNamara
Change-Id: Ia839bfb2243cd22135cabd5b4ce9c8222b232024
2014-11-03coverity#1250409 Explicit null dereferencedCaolán McNamara
Change-Id: Iab78e3ec447b8a32f43dff3e30c5be254f6d0a48
2014-11-03coverity#735914 Dereference after null checkCaolán McNamara
Change-Id: Id7d50edca21f3a595ba31430cae7c62104d031d8
2014-11-03coverity#1241199 Unchecked dynamic_castCaolán McNamara
Change-Id: Ib1ba5d63b258202a6a8c2113906ad22ff79a352c
2014-11-03coverity#707956 Uninitialized scalar fieldCaolán McNamara
Change-Id: I690de0eb0db28a25dc6c2e83a6dcba620d7c5922
2014-11-03coverity#1250700 Uninitialized scalar fieldCaolán McNamara
Change-Id: I5db51e7864017f0d0e474ed3e253657288245850
2014-11-03coverity#705527 drop testlistener that logs to c:\listener.outCaolán McNamara
Change-Id: Id9eab9e44d4b0e705289fa45be0fc2343903de09
2014-11-03coverity#1209713 Dereference null return valueCaolán McNamara
Change-Id: I8aba67ae5bf5ffb7530be8f6d5b2511b554717db
2014-11-03coverity#1250699 Dereference null return valueCaolán McNamara
Change-Id: Iaddc47087d796d96fa0ed054c254b3cf83c90b5e
2014-11-03coverity#705921 Dereference before null checkCaolán McNamara
Change-Id: I7aea5663ed4a5d2f4990292d64eefd782119aded
2014-11-03checker type doesn't work, try event typeCaolán McNamara
Change-Id: I8b92c583bf1d6167b713648f417ba5569b3593ba
2014-11-03be a little more consistent stylewiseCaolán McNamara
Change-Id: If1d822e0e6c87e792ff4a769a525e161505325c9
2014-11-03coverity#1209395 Dereference after null checkCaolán McNamara
since commit 808d273db098e2269e53813595a6bfc7b160e28e Date: Fri Apr 25 11:56:54 2014 +1000 Remove ImpInitOutDevData and ImplDeInitOutDevData in OutputDevice All these do is some very, very basic initialization. There is no need to lazy load the structure, it should be initialized when OutputDevice is created in the constructor and deinitialized in the destructor. mpOutDevData is never NULL Change-Id: Ie08f7520e8c09b57e056c086bba3089abe2486fa
2014-11-03Related: fdo#84844 Get rid of ColorControl and ColorPopupMaxim Monastirsky
Change-Id: Ie2d00cfbccefd69c8e46381b712620def655a798
2014-11-03fdo#84844 Use SvxColorToolBoxControl for border colorMaxim Monastirsky
Change-Id: Id177964ec35d6b5a08c46b8ba96615c2a4729136
2014-11-03Related: fdo#84844 Prepare border color status updateMaxim Monastirsky
The Sidebar button handles also the color of diagonal lines. Change-Id: I26d75472a8c9ca482274797127994d4546b1b3e8
2014-11-03TANGO: Add designerdialog icon from tango_testing and reference from humanYousuf Philips
Change-Id: I662842eb293d4b0d98ea2a39c3fd66abe1fc730b Reviewed-on: https://gerrit.libreoffice.org/12217 Reviewed-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com> Tested-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com>
2014-11-03Updated coreOlivier Hallot
Project: help b9e9fb3ea9a4d493038643b831ca9b9149d4c2b8 fdo#85686 update help page for Calc Option Formula Calc's Formula option page has a new entry related to large file recalculation Change-Id: I9f4a5834ee58905d865aaedab25bd692445610d0 Reviewed-on: https://gerrit.libreoffice.org/12165 Reviewed-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com> Tested-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com>
2014-11-03remove some extra empty linesDavid Tardon
Change-Id: I88b95a253f19306c6519987a4a8f72e9362d4d9a
2014-11-03coverity#982188 unchecked return valueDavid Tardon
Change-Id: I8b99afa5d43e1a9f003c3b31175d73bf5a289232
2014-11-03coverity#982161 unchecked return valueDavid Tardon
Change-Id: I3c8370915898e322f40812b52929132e192b3a2c
2014-11-03coverity#982160 unchecked return valueDavid Tardon
Change-Id: I94117e9f53f1929906b88b2a31d0fcfdf2e40c8d
2014-11-03coverity#982488 unchecked dynamic_castDavid Tardon
Change-Id: I7008b3a96400a4d1520a03d985c0b421ff587bcb
2014-11-03coverity#1209103 copy-paste errorDavid Tardon
Change-Id: I9ed3ef809401ecf23e9c1f9bd020cf96049b56f0
2014-11-03coverity#1240253 unchecked return valueDavid Tardon
Change-Id: I0262cb51fbc0b8e4bb6d6aabbd59a7c271768a99
2014-11-03I think this should be Left()David Tardon
Change-Id: I603215180e86ca28b94b129378ec48b7658e37b5
2014-11-03I think this should be Left()David Tardon
Change-Id: I8588809ce636107b4e9a51c5a1f4bc7af3f23f0d
2014-11-03coverity#1242514 arguments in wrong orderDavid Tardon
Change-Id: Icc6d4f0375106b670dd1efd04395f3c163bdd65d
2014-11-03I think this should be Left()David Tardon
Change-Id: Ifd83a4a28414ffa5d8cc3cec3def4361737a333e
2014-11-03coverity#1242510 arguments in wrong orderDavid Tardon
Change-Id: I898f3e383f5ff3451860e49b0ea00111ed1b52c2
2014-11-03coverity#982921 do not leakDavid Tardon
Change-Id: I7f40b7e72caa67644b23f02fa6c2a4ccfe4f354d
2014-11-03fdo#85620 - Changing the label 'Gallery' and having it in the insert menuYousuf Philips
Change-Id: I4deaef9a942b82566bc7dcdc65f2a84441045f91 Reviewed-on: https://gerrit.libreoffice.org/12167 Reviewed-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com> Tested-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com>