summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-01-29Extract Fieldmark::dumpAsXml() from MarkManagerMiklos Vajna
Change-Id: I1e3b1d4b7d596630ea9b804ded911a2e48b970c9
2015-01-29sw: typo in SwpHintsArray::GetEnd()Michael Stahl
Change-Id: I4ccf1cc5609ed4f2c70dbf396264e6caf16573c3
2015-01-29tdf#75996: sw: correct bookmark positions when deleting textMichael Stahl
The problem is that SwUndoDelete will move the fully selected nodes to the UndoNodes but it leaves bookmarks with their SwIndex pointing to the deleted nodes. The SwNodeIndex are corrected by SwNodes::_MoveNodes() so they point to a different node than the SwIndex. This only happens if only one position of the bookmark is inside the deletion range; if both are, the bookmark will be deleted by SwUndoSaveCntnt::DelCntntIndex(). Also joining the 2 start/end nodes of the selection will accidentally correct the bookmarks but only if it happens to delete the end node. (and apparently there is also a DeleteRange method that doesn't join) Change-Id: I91ec362bb833328f8d681fd9458cb915c4efb267
2015-01-29sw: replace pointless unused position update in SwTxtNode::Update()Michael Stahl
... with a more useful assertion. Change-Id: I43f0a3e123d9dc9f9fd9548e84b8619c7d4f1262
2015-01-29sw: remove some pointless verbosityMichael Stahl
Change-Id: I3a012cfd9ba8c8c331d025f56f590a74941f71dd
2015-01-29rhbz#1186897: bridges: oops, fix s390 bridge buildMichael Stahl
Change-Id: I5f2393b13729ab43ad2cfd4a3f960a507e3e608b
2015-01-29cppu: convert some OSL_TRACEMichael Stahl
Change-Id: I5dc00f7b03b51916b1331c4ba64064a5aa5930c9
2015-01-29cppu: the LogBrige really needs its own SAL_LOG areaMichael Stahl
Change-Id: I129f3dc1597035664e4ff284276cb0d49a560ab5
2015-01-29gdb pretty printers: fix the sw::mark::IMark and SwModify printersMichael Stahl
If these are called on a value that is of a different type than what is checked in the children() method, nothing is printed except exceptions about non-existent _iterator. GDB can figure out the dynamic type itself and call the pretty printer only if it's actually a UnoMark so don't register it for IMark. Same thing for SwUnoCrsr, there is already a class for it. Change-Id: I00238f1e3f01741d607eec9d47671302b858b965
2015-01-29gdb pretty printers: remove obsolete tools container printersMichael Stahl
Change-Id: Ieb1e104e8147376405e90ecada308fee05321dcd
2015-01-29tdf#76174: basic: lock SolarMutex in BasicScriptListener_ImplMichael Stahl
... before calling into BASIC. Change-Id: I51a59fe5ca9b15ff7ec509c052964523d87a9790
2015-01-29scripting: remove unnecessary SAL_CALLMichael Stahl
Change-Id: Ic1fbb36a509ec1dce63f1c7fa4a8955a4780517d
2015-01-29vcl: copy-pasted SAL_WARN_IF conditionMichael Stahl
Change-Id: Icb0109b954b9a7710309cc9bca30309a6ec90a73
2015-01-29Only list documents directly in NSDocumentDirectoryTor Lillqvist
Change-Id: Ibaaa9ce5e5469b960d2b3dee1d40c536e5ae0739
2015-01-29Updated coreCaolán McNamara
Project: translations add7a7e0967a3fc04666ba061d81d1ba9b326554
2015-01-28fix enable-assert-always-abort buildCaolán McNamara
Change-Id: Icbab4d030877f978babfc51f984fb4793b60f681
2015-01-28That is well worth an assertLionel Elie Mamane
The exception thrown by at() is not treated meaningfully anyway. Change-Id: I8c243541271d7da76b2a9b102e058b5f2d1ad6d3
2015-01-28not all OrCriteria have three childrenLionel Elie Mamane
and some contain a column in the second child Change-Id: Ifd69758336233ed0233120b3315d4f33655fa994
2015-01-28Disable the 'Test OpenCL' button once pressedTor Lillqvist
Change-Id: I6678502472f646ae770be4d17d85f2a02fba8f4b
2015-01-28WaE: overriding destructor declaration not explicitly marked 'virtual'Tor Lillqvist
Change-Id: I4f155f8a28afa6a16b1859b254a339d8374a769b
2015-01-28Make the OpenCL test document construction and calculation a bit fasterTor Lillqvist
Turn off AutoCalc while constructing it and then calculate it when ready. Use a smaller number for the minimum formula group size required for OpenCL to be used while calculating it. Use less hardcoded magic numbers in the code. Change-Id: I6f2c3b1035947a542776d6087bd229cb9c2892fb
2015-01-28Make SetGlobalConfig() publicTor Lillqvist
Change-Id: Ia4ac90c369a8e33ddefc6a87f877b98491efcede
2015-01-28Make GetAutoCalc() and SetAutoCalc() publicTor Lillqvist
Change-Id: I25d681b4b1e35af49b6631b2c3de2ccc296b9b42
2015-01-28janitorialLionel Elie Mamane
Change-Id: Ifb0a277a27613ea1a771a8bb3b8c784b9eca4f2f
2015-01-28Query Design: use correct name for columns that come from another query.Lionel Elie Mamane
Change-Id: I25b4ccdc2f50ba89687e1f4c871f286251a28e21
2015-01-28Do not corrupt URIs entered into the Hyperlink dialogStephan Bergmann
...by fully decoding them via DECODE_WITH_CHARSET (where charset defaults to UTF-8) instead of merely normalizing them to IRIs via DECODE_TO_IRI. For example, entering http://example.com/foo%2Fbar into the Hyperlink dialog would have resulted in a corrupted URI http://example.com/foo/bar Change-Id: Ic37859afa59c3fdc3280cf4803d4334026e1f336
2015-01-28Use vector::dataStephan Bergmann
...in some places where it is obvious that it does not hurt that for an empty vector the obtained pointer is not necessarily a nullptr. Change-Id: Id5d66b1559ca8b8955d379bcdbfae6986ef46a51
2015-01-28external/lcms2: Work around -fsanitize=alignmentStephan Bergmann
Change-Id: I57c49172fa5bb19968bf217285d0cd9222cc3530
2015-01-28fix crash in vcldemoMarkus Mohrhard
Change-Id: Id502a36ece4ecc4551ee67f1818fb9886d6e0ce5
2015-01-28Add NORMDIST testTor Lillqvist
Change-Id: I9c3d5b94d22566d63f49d9dcd73a97df97e9802e
2015-01-28Make phi() and integralPhi() static and publicTor Lillqvist
Needed for the NORMDIST() OpenCL implementation test doc. Change-Id: I40f0d5d7ccf5963fa47d6648873ab23f8adf7aea
2015-01-28Related: tdf#82942 multiple crashes on changing text in SwInputFieldsCaolán McNamara
i.e. load doc keeping setting text of "LINE" + ok as each popup appears will crash eventually Change-Id: Ibc4bb8fe65bd5dd380c0fe833e5ece2b39de5dbe
2015-01-28Use minimum necessary value for nRowsTor Lillqvist
Just temporary (haha, let's see...), the Right Thing would be to turn the mnOpenCLMinimumFormulaGroupSize down to some small value for the duration of the test document's construction and calculation, and then return it to its prevous value once the document has been dismissed. Change-Id: I52e9813af1ceb2410ef74723fadee21b89cffe47
2015-01-28Make ScInterpreter::GetGlobalConfig() SC_DLLPUBLICTor Lillqvist
Change-Id: Idd27688055a08ffe9a6970c28cd7da6f6e1a7f66
2015-01-28Add ROUND testTor Lillqvist
Change-Id: Ifa0c2bc6767d9d2e9b27c5a6b30929463b20407c
2015-01-28Resolves: fdo#50640 make sure we don't move away from the current fieldCaolán McNamara
by accident by trying to select the entire field if its inside an invisible area where WrtShell::Right will skip automatically to the next visible area Change-Id: Iafe9ebd1430db8e6022fec89729d0abb62dad0bb
2015-01-28It's OS X, not OSXTor Lillqvist
Change-Id: Id7cd032a8fd24d57e02d1a94e4bebccc56904609
2015-01-28Add NORMSINV testTor Lillqvist
Change-Id: I0acdc5012a89d90cab6b30fe26b321d956982586
2015-01-28Make gaussinv() static and publicTor Lillqvist
It does not access any member so can be static. It is needed in the OpenCL test spreadsheet to verify the results from the OpenCL implenentation of NORMSINV. Change-Id: I72c1f6e6c0c04c0e25f4779ab334158b8d4e371d
2015-01-28loplugin:cstylecast (Mac OS X)Stephan Bergmann
Change-Id: If1fd605c01fa892c7730930606a29a7bed9edb5e
2015-01-28let have FormulaGroupAreaListener a virtual dtorEike Rathke
Change-Id: I1f5e246d68971124ef21e9c2d0db80499928998b
2015-01-28Some more loplugin:cstylecast clean-upStephan Bergmann
Change-Id: I132d22e2af3cf673c17d8964f690d48990834884
2015-01-28Clean up implementation of osl_getSymbol et alStephan Bergmann
Change-Id: Ic71b7bc8e8b5783deb1f9fa89136537c24281a55
2015-01-28tdf#80960: Attempt to fix the cursor placement after document load.Jan Holesovsky
This is a blind attempt - don't have a 32bit system at hand to really try it. Change-Id: I4fe8c65b794d01e79aa93cbac440f710b630c7dd
2015-01-28fdo#86984: UI Line numbering works only for EN_USMuthu Subramanian
Change-Id: I0fadb6f5f96cccd4056a164a6b0f3b2fdd68a40b Reviewed-on: https://gerrit.libreoffice.org/14168 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Andras Timar <andras.timar@collabora.com>
2015-01-28Related: fdo#50640 allow the cursor to enter empty vertical input fieldsCaolán McNamara
Change-Id: Ib7db10d59f6d1106b33558fe5bdd076e278dfbbe
2015-01-28update creditsChristian Lohmaier
Change-Id: I649ab0e4f17fc6601efc0eabfefbe10501f8bbc1
2015-01-28Look for iOS SDK 8.2, tooTor Lillqvist
2015-01-28This typedef is not unusedTor Lillqvist
Fix fallout from fe480d8136b204c8dc6c68916cce7e816f8b9c48. Change-Id: I1ced0d7bcf368884fc8a079b047e0cbf645c3e1a
2015-01-28add a reference configuration for coverityCaolán McNamara
Change-Id: I2dc149db36a5cfdbca63ea231425168fb799abe0