summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-11-20One more IsMapMode() -> IsMapModeEnabled().Jan Holesovsky
Change-Id: Id8e5ca61eedb7607b5ef9d7e67bee47c87d4990b
2014-11-20vcl: If there it a MapMode, it is applied.Jan Holesovsky
Based on that, I believe this condition can go too. Change-Id: I88d8211678ca148bdf85729f57893e1476a52fc9
2014-11-20vcl: Kill IsMapMode(), it means the same as IsMapModeEnabled().Jan Holesovsky
Change-Id: I65fd40b8268cb0a27ba40da60fcf8e84cc8f7661
2014-11-20DOCX filter: import <w:startOverride>Miklos Vajna
Change-Id: Id95518c7ea38a974593a1880b4ef581ff49bcb90
2014-11-20Updated coreChristian Lohmaier
Project: translations 587e99affea726021dc41da2cc5a21a4b961249b
2014-11-20No need to start listening in CalcAfterLoad for xls import.Kohei Yoshida
We do that prior to it, and in fact, doing it here would unregister all group area listeners and re-register non-group ones, which is massively slower with huge documents. Change-Id: I693f681df05f036eb1aa53554e601066c469f49a
2014-11-20that's not right anyway, using the Distance as a which-idCaolán McNamara
Change-Id: If6422d35b5d7b4b9a3cf9f16c34a1ee977b3085a
2014-11-20Bin the --disable-vba optionTor Lillqvist
We don't check it anywhere in configure.ac. Change-Id: I7ccd0480049bc43139552eb32d8c8ac254aeeecd
2014-11-20fdo#85554 SwXShape: fix getting ZOrder property when doc contains TextBoxesMiklos Vajna
Change-Id: I9b6b83f0f6d627bb14a880a19769ee70564cf52b
2014-11-20Drop --disable-openglTor Lillqvist
Change-Id: Ic1d9843e5b05cf4eeb647cf13eea15fc2acd6063
2014-11-20Include <osl/diagnose.h>Tor Lillqvist
Change-Id: I67cb459b1e9ab5638a5b405430d3e0a42fc6bfc3
2014-11-20No need to have OpenGL slide transitions optional at configure-timeTor Lillqvist
(The --disable-opengl option was misnamed; it actually referred only to the OpenGL slide transitions, not our other use of OpenGL.) Use of OpenGL is still hardcoded off for platforms where we don't know whether and/or how to handle it yet (iOS and Android), and otherwise it is optional at run-time. Change-Id: I65d0612dbc79ee07273854e5a468d891ef07c6b7
2014-11-20No need to have OpenCL optional at configure-timeTor Lillqvist
It continues to not be used on platforms where not available (iOS and Android), and on others it is optional at run-time anyway. Change-Id: I7ba2f87ac143aad78df7edc2e6e6dc014c29c071
2014-11-20Improve wording for the OpenCL blacklist/whitelistTor Lillqvist
Change-Id: I4fd0a255903daab3d5a1888eeff266f831ad590b
2014-11-20Call install-gdb-printers with full pathStephan Bergmann
Change-Id: I92b34e61edb641d29d1cbf344e7ae5823c912cbc
2014-11-20WaE: work around loplugin:unreffun and loplugin:externandnotdefinedTor Lillqvist
Change-Id: I5192ad1f068746da257f3e1d9340325956b1e69d
2014-11-20WaE: unused variable 'aOSRelease'Tor Lillqvist
Actually we don't need the aOS variable either, we can check maOS directly. Change-Id: Ib14d6baf0bda28a45361886059629460641571bc
2014-11-20WaE: overriding virtual function declaration not marked 'override'Tor Lillqvist
Change-Id: Ieb8da224e02a9c8e19eabb4c5bcbd81120900245
2014-11-20bad API translation between mozilla strings and OUStringMarkus Mohrhard
Change-Id: I99df7d45a1e242e8a1373f150da7a5b74a7d0ffb
2014-11-20Use regexps in the OpenCL blacklist/whitelistTor Lillqvist
Drop version number bounds, use regexps instead. Not entirely ideal, but as vendors are free to put arbitrary stuff into the driver version string (part of which might be numbers, part free text, part significant, part just informative), just comparing against lower and upper bounds with strverscmp() was not ideal either. Change-Id: Ic4ef4d8e15f79f1c96e6e03f6c01e62ae92dc2fc
2014-11-20include the unx part for getting OpenGL driver & device informationMarkus Mohrhard
desktop/unx/source/glxtest.cxx is taken directly from the Mozilla project. THe whole concept is taken from Mozilla and is based on starting an early process that creates an OpenGL context. This prevents crashing drivers to crash Libreoffice. We read the information from the pipe as soon as we create the first vcl Window. In that place we then decide if the device/driver combination is blacklisted. Change-Id: I2624d4ce06d503281a4459cf3174f57cf1f7b733
2014-11-20osl_getVolumeInformation: only stat if necessaryStephan Bergmann
...in the hope that that makes cid#706206 (TOCTOU) go away Change-Id: I4bc7b44e0268cf5d46aaf55fb4073dcdf67b324c
2014-11-20further fix mozab build after header cleanupChristian Lohmaier
Change-Id: I7e3c79d854a08c94aa699d86994704b9360b69bf
2014-11-20connectivity: fix the mozab buildMichael Stahl
Change-Id: I299c856814e09a93a71f8acf8745a0590e2ecc72
2014-11-20sal: fix build with clang and --enable-crashdumpMichael Stahl
Change-Id: I148005489e4ef31b55886c1dd3076650d3a2ec17
2014-11-20[Accessibility] Make the sidebar a bit accessibleNiklas Johansson
The accessibility of the sidebar is heavily built on PANEL's. Since A11y on mac ignored panels it did not pan out well. Also the title was removed from AXGroupRole but is needed to announce the different panels of the sidebar. This might have some unwanted effects on other parts of LibreOffice since a lot of things are built up from AccessibleRole::PANEL. Change-Id: I095d26b3c89e2c0403d3267baa53f3bec5e07662 Reviewed-on: https://gerrit.libreoffice.org/12985 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-11-20Bitmap::Crop: When the rectangle is entire bitmap, do nothingMatúš Kukan
It is expensive to rewrite the whole bitmap with the same content. Change-Id: I001210840d535ac54837fff092c90835f9f2f547
2014-11-20sw: convert more legacy assertsMichael Stahl
Change-Id: I602913a1cfb8dda072945770a585e6cd9fd3e134
2014-11-20sw: convert legacy assertions in frmsh.cxxMichael Stahl
Change-Id: If23d47cdee2ab6f4e7f728da02c0db6d23407c8f
2014-11-20...at least, that's the value for me on Mac with retinaStephan Bergmann
Change-Id: I041b497bab9415b2b33d6b4b91f3c58ea9dbc05f
2014-11-20SwTxtNode::IsIgnoredCharFmtForNumbering: ignore RES_CHRATR_COLORMiklos Vajna
And also in SwTxtFormatter::NewNumberPortion(), use SwTxtNode::IsIgnoredCharFmtForNumbering(), via checkApplyParagraphMarkFormatToNumbering(). Otherwise the color of the paragraph mark is inherited by the numbering portion, which is not what IDocumentSettingAccess::APPLY_PARAGRAPH_MARK_FORMAT_TO_NUMBERING (mirroring Word's behavior) is supposed to do. Change-Id: I5d8df9b404916cc4a4405bf796d971ede59e6111
2014-11-20sw: move IsIgnoredCharFmtForNumbering() to SwTxtNodeMiklos Vajna
I need this in SwTxtFormatter. Change-Id: Ib1586299f468a88e92fdb367fbab69a683791dc9
2014-11-20fdo#83765 do not update references in SortReorderByColumn() if disabledEike Rathke
Similar to SortReorderByRow() Change-Id: I11dd710c00a56a5f56aeb048fa2258631555a220
2014-11-20At least old Mac OS X does not know AT_FDCWDStephan Bergmann
...lets hope it is actually declared as a macro wherever it is known. Change-Id: If541d02af3ac5d9ad4f0ac1cb4dd9f9f4550a78a
2014-11-20Dispose document when doneStephan Bergmann
Change-Id: I7b15220568717e159f119e79da0016cbc88873cf
2014-11-20Let attemptChangeMetadata work on symlink itselfStephan Bergmann
Change-Id: I42a81e70e76cb4699052815cfd415a8efd902b03
2014-11-20vcl: update the OpenGLContext's pixmap when re-sizing a VirtualDevice.Michael Meeks
Change-Id: Iee8089fc3bfbea60adee95dfb2c229f3efea28f8
2014-11-20fdo#83529: Only preserve metadata of moved, not copied filesStephan Bergmann
Change-Id: If3e436d137b6989af22df43c3a9a247bb2c9ffe9
2014-11-20fix "Could not merge msm file into database"Christian Lohmaier
no idea why it fails with the typo-fix (or any change in that line for that matter)... Change-Id: I74c74e2080813ab60d4fcd48c62bb7f455046936
2014-11-20This should ideally be consistency-checked in UnoidlProviderStephan Bergmann
...but is not, for performance reasons. Change-Id: I2518eb1f1a2f84cfd836c390a418a2fcb516b82c
2014-11-20SVG: improve handling of visibility propertyChr. Rossmanith
visible children of an invisible parent are now visible Change-Id: I2eafbd15d22f54ec39f12bfd32175925ab8a6184 Reviewed-on: https://gerrit.libreoffice.org/12504 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-11-20Fix typo in updaterequireddialog.uiAdolfo Jayme Barrientos
Change-Id: I952486625daea6ed995b1e654d810585cce2c8c2 Reviewed-on: https://gerrit.libreoffice.org/12973 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-11-20fdo#85594 enabling date format and pivot table and adding a more hidden onesYousuf Philips
Change-Id: I1cd438c9d85445da97210210ddd4a6c99d6390e6 Reviewed-on: https://gerrit.libreoffice.org/12977 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-11-20fix memory leaks caused with SmNodeStackTakeshi Abe
SmNodeStack now frees its own pointers after use. Change-Id: Ie43eb887810a3424109708c956ccbdf97fc5a2e5 Reviewed-on: https://gerrit.libreoffice.org/12970 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-11-20Clean up includesStephan Bergmann
Change-Id: Id3aaae19d86b706fd5ddb5982340472d28a75610
2014-11-20Add tests for vectorized binary ops + - * /Tor Lillqvist
Change-Id: I0ea36081416ba3b44e57e12b172c00fa27d4e653
2014-11-20doxygen: png -> gif for imagesMiklos Vajna
This reduces the amount of output in docs/ from 17G to 10G for me. No big surprise, inheritance diagrams use only a few colors, so gif's indexed colors work here nicely. Thanks Christian Lohmaier for the idea. Change-Id: I23db0c1a4dc7410cb3eb1ae99044962959fac28a
2014-11-20Revert "coverity#1169848 Uncaught exception"Stephan Bergmann
This reverts commit b0a7722ebfa720255b6ce1e383a3aacae0ce5e9f, now that fced31697bcc2a2a4da34d804582002de0320302 "comphelper::SequenceAsHashMap: throw IllegalArgumentException" made the underlying problem go away. Conflicts: framework/source/services/modulemanager.cxx Change-Id: I6599cf25d4f28d2bab19da67d5de5caacd84a622
2014-11-20Introduce OStringBuffer::appendUninitializedStephan Bergmann
...corresponding to the OUStringBuffer couterpart Change-Id: I3ab03343696e6755cf1ccc470e4decc2f41d2558
2014-11-20len cannot be <= 1 hereStephan Bergmann
Change-Id: I482e6eeca09e7b15a8d95a866ebab35d06f13e9e