summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-04-15remove empty constructor and destructorMarkus Mohrhard
Change-Id: Ia88d17a632f75b203823b66a5fdd261732c09ae4
2015-04-15add SVX_DLLPUBLICCaolán McNamara
Change-Id: I46ef716d572d27ff0a6153afa7453d1a32d6df26
2015-04-15fix SAL_WARN_UNUSED placementCaolán McNamara
Change-Id: If387e8d9371bc752c782533a1bdeb3dc8902dd34
2015-04-15add some SAL_WARN_UNUSEDCaolán McNamara
Change-Id: I6b8fb1d9b76f586a9a27d53f90e7686fcdf35077
2015-04-15and SvxContourDlgItem is also unused nowCaolán McNamara
Change-Id: I9696123d8ce9cd69520921cd19cf26e3f60bc61a
2015-04-15and now SvxBmpMaskSelectItem is unusedCaolán McNamara
Change-Id: I76993ffb0dd347afe4f114431e8c12922d5c6882
2015-04-15don't crash on export of fdo60087-2.xlsx to xlsCaolán McNamara
Change-Id: I888828bc88deea16c46895d29f25526bd3c44ce7
2015-04-15-Werror,-Wunused-private-fieldStephan Bergmann
Change-Id: I90cb42aff1d57a92f371d339b0be7c71b1a15ff8
2015-04-15sfx2: silence bogus SfxObjectShell::isTiledRendering() warningsMiklos Vajna
It's expected that e.g. the basic ide doesn't override these methods. Change-Id: Ie32002c8416c5c0cd81ddf010fa5156b0698560e
2015-04-15DOCX import: convert MathType to Math if MathTypeToMath is enabledMiklos Vajna
With this, math equations created by Word <= 2003 and embedded to docx files can be edited finally. Previously the result was read-only and opened in an unexpected new window. Change-Id: I4f9dd1cca4a149959f6151cf9af9242b53190ef5
2015-04-15tags: also index officecfg wrappersMiklos Vajna
Change-Id: I6211762b03bd85a1388027906858020a767f12f6
2015-04-15starmath: allow UNO import of MathTypeMiklos Vajna
com.sun.star.comp.Math.XMLImporter already handled MathML import, but MathType was not possible externally. Change-Id: I5bf7181758a12eeaa576d016d3704a771ac5a8ba
2015-04-15don't crash on export of ooo52825-1.doc to .docxCaolán McNamara
Change-Id: I944f65c9bf1cf7cc39e674bab602dbf2d499317c
2015-04-15tdf#62101: Show only file extensions we're able to insertKatarina Behrens
Change-Id: If8f53ac8af85f15958cd488fb0fd4c37997963c9
2015-04-15Use cross-app filter directlyKatarina Behrens
and bypass SfxFilterMatcher, which will likely not find it. We're able to insert .odp file into Draw and .odg file into Impress anyway Change-Id: I02332f0ebd6856d088261ce014bd04f87acfbac6
2015-04-15fix crash on re-export of fdo50057-2.odt to odtCaolán McNamara
Change-Id: Ice7a754dd4f42b5cf62ae2038b63d893b8a92fd8
2015-04-15sw: DrawFillAttributes: move check for empty rPaintRegionMichael Stahl
Tweak c2c22d26db03949771d5a0bb4f8abf6d2dc850ea a bit: if the paint region is empty, nothing should be painted. Change-Id: If88b8153f701b1f21cfd2300f0af532f5c718cdf
2015-04-15convert LOCKFILE_ constants to scoped enum and cleanupNoel Grandin
Change-Id: I9a2339cc953a718403b3cd0960d5d8d34abae455 Reviewed-on: https://gerrit.libreoffice.org/15304 Tested-by: Noel Grandin <noelgrandin@gmail.com> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2015-04-15convert TXTFORMAT constants to scoped enumNoel Grandin
and move them to the SW module since that is the only place they are used Change-Id: Ic037e5ac9d2514377669c5f583b856e1da429a19 Reviewed-on: https://gerrit.libreoffice.org/15303 Tested-by: Noel Grandin <noelgrandin@gmail.com> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2015-04-15convert SFX_ITEM constants to scoped enumNoel Grandin
Change-Id: Ief8c30c356ba947727c5ab70092042816a0db99e Reviewed-on: https://gerrit.libreoffice.org/15302 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2015-04-15convert SIGNATURESTATE_ constants to scoped enumNoel Grandin
Change-Id: I715e39599464a199a8b78ec274bfe47b90fc4bb7 Reviewed-on: https://gerrit.libreoffice.org/15301 Tested-by: Noel Grandin <noelgrandin@gmail.com> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2015-04-15convert SFX_VIEW constants to scoped enumNoel Grandin
Change-Id: I327dc1ec722fa9445f13fc5168ad646e272ba9d4 Reviewed-on: https://gerrit.libreoffice.org/15300 Tested-by: Noel Grandin <noelgrandin@gmail.com> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2015-04-15fix crash on re-export of fdo39974-1.odt to odtCaolán McNamara
Change-Id: Ib4246987a3665f655ad44339ade0350b074c3266
2015-04-15remove unnecessary use of void in function declarationsNoel Grandin
ie. void f(void); becomes void f(); I used the following command to make the changes: git grep -lP '\(\s*void\s*\)' -- *.cxx \ | xargs perl -pi -w -e 's/(\w+)\s*\(\s*void\s*\)/$1\(\)/g;' and ran it for both .cxx and .hxx files. Change-Id: I314a1b56e9c14d10726e32841736b0ad5eef8ddd
2015-04-15fix crash on export of fdo60365-2.ods to xlsxCaolán McNamara
Change-Id: I1a281b096e4d1831bcf67ca03180afff043fbcfd
2015-04-15add some SAL_WARN_UNUSEDCaolán McNamara
Change-Id: I208ce526ab09c118709e82b0930db4502d5c5b76
2015-04-15fix crash on export of fdo68639-2.ods to xls with invalid mnLastIdxCaolán McNamara
mnLastIdx doesn't get reset when the color list is reset, the code already acknowledges that mnLastIdx is the last set index but that it may not be a valid position, so only set rnIndex if mnLastIdx is valid and the data at that pos is the desired data. Change-Id: I57ce32fd1a13bfe9049ed94be34229c8c2808b8e
2015-04-15Uncaught exception at HTML export of embedded objectsLászló Németh
Using SkipImages FilterOptions with HTML export, LibreOffice tries to export the content of the embedded objects, too, but it seems, we get only exceptions for a simple test document, too. Change-Id: I756ca79b183c0ee2f2be712df799a97612f9475b
2015-04-15add some SAL_WARN_UNUSEDCaolán McNamara
Change-Id: Ic924918b1d079bd486bf30175b5b5a17f274bf4a
2015-04-15fix col limit crash on export of ooo103315-1.ods to xlsCaolán McNamara
Change-Id: Ic68ddc56d9cf9dd410c1f073ba83bfeea8220bf0
2015-04-15writerfilter: reduce scope in ListsManagerMiklos Vajna
Change-Id: Ibc2fa865614df44088883acee4a2c87a3fb19279
2015-04-15writerfilter: TDefTableHandler's bOOXML was always trueMiklos Vajna
Change-Id: I9efcb32f742aa7a0549ceb246a1b75fa3af662be
2015-04-15writerfilter: TablePropertiesHandler's bOOXML was always trueMiklos Vajna
Change-Id: I8b1e05c6f685ea32a3c29a4636be4bc4894d7de0
2015-04-15writerfilter: these ctors can be explicitMiklos Vajna
Change-Id: I8f974bcc329267dcb707caa3b883fb748276433c
2015-04-15tdf#90594: MM: Fix for broken translation between Bookmarks and row indizesChristoph Lutz
The datasets used in the unomailmerge service can be selected via a property "Selection". This property expects a sequence of sdbc::Bookmark elements that need to be translated into row-inizes. This translation was broken - the loop-pointer pTranslated was never incremented which caused a wrong "result" selection in which only the first element was changed. Change-Id: I319131caa89e327b11406ab7d0c56a833385d433 Reviewed-on: https://gerrit.libreoffice.org/15289 Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>
2015-04-15-Werror,-Wunused-private-fieldStephan Bergmann
Change-Id: I27afea85c339cf2239ed118cf6cedaece032dfae
2015-04-15tdf#71278 Revert both the previous cursor commit and the commit it fixedMatthew Francis
The original commit was based on a misunderstanding. In fact, the call to GetSalData()->getCursor() at the end of AquaSalFrame::getCurrentCursor() already handles POINTER_NULL correctly, or at least in the same way as on other platforms. The cursor in presentation mode disappears after 10 seconds - if this is to be changed, it should be changed for all platforms. Reverts: commit 58a3a99efec9d4bcb4ab61c41bf2feb707c8e1ef Author: Matthew Francis <mjay.francis@gmail.com> Date: Sun Apr 12 23:10:58 2015 +0800 tdf#71278 Set an invisible cursor rather than hiding the cursor commit 8d351c59d4393aa37ab38139b3a741f15a49dbfe Author: jorendc <joren.libreoffice@telenet.be> Date: Sun Apr 14 00:33:19 2013 +0200 fdo#31082 cursor visible during impress presentation Change-Id: Ie40882661dc1a2f4857027ff04393874042e04ec Reviewed-on: https://gerrit.libreoffice.org/15316 Tested-by: Norbert Thiebaud <nthiebaud@gmail.com> Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
2015-04-15tdf#71278 Set an invisible cursor rather than hiding the cursorMatthew Francis
Change-Id: I5ecfa01ab444148aa8d13d04f78db1c6c131a4df Reviewed-on: https://gerrit.libreoffice.org/15269 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
2015-04-15add test case for tdf#81407Markus Mohrhard
Change-Id: I45124d662cee9b845c1f851de4f564dfe8c0e94e
2015-04-15import marker color from OOXML, related tdf#81407Markus Mohrhard
Change-Id: Ie416d757b73e99836d14b7f24a5cb4b370284d8c
2015-04-15export marker color correctly, tdf#81407Markus Mohrhard
Change-Id: Iebc3d87642c93fcdecddd6332fd57b7fdfb2d337
2015-04-15add test for dispBlanksAs exportMarkus Mohrhard
Change-Id: I5d48b99c87c66033a1e5ada05a9d2aa6bd3fb667
2015-04-15export missing value treatment to OOXMLMarkus Mohrhard
Change-Id: I1a448e9c954a3851fe3590a0fae73ed5b27555f0
2015-04-15add test for autoTitleDeleted exportMarkus Mohrhard
Change-Id: I152b6625b5ae1ec40e375bad2f144978dc7d8bba
2015-04-15we use the correct OOXML default value nowMarkus Mohrhard
Change-Id: I1aad3e40ad61a1397b619bdc6e0f578e2c9c141e
2015-04-15correct font name export for dxf to xlsxMarkus Mohrhard
Change-Id: Ice59382e13ca91f37f7140ee5bc5b5841a61acce
2015-04-14Updated coreAdolfo Jayme Barrientos
Project: dictionaries 59ff183f473301efcdf7d5b85f3f5e2769d030ac Revert Spanish dictionary’s description to allow for its localization Thanks to András for noticing.
2015-04-14tdf#89750: svx: fix ExternalToolEdit on WindowsMichael Stahl
While adding check that the temp file move succeeds, overlooked that the file handle is actually leaked, which means the move will fail on WNT because the file is already open. (regression from ef490df2119523e1761f99b5fdbb387c2c71608d) Change-Id: I779ccde79871930fef3bad7e17b633fb62e36a46
2015-04-14openssl: drop SunStudio specific patch hunkMichael Stahl
Besides, wtf is it using -fast by default so the binaries don't run on any system other than the one that did the build? Change-Id: I5adc26fb6370a5292721df3167afc5485c15cb0a
2015-04-14Remove checks for HTMLMODE_SOME_STYLESHarri Pitkänen
HTMLMODE_SOME_STYLES is enabled if we are in HTML mode (it is enabled for all HTML modes). These checks for conditionally disabling some table background controls are not needed anymore. Change-Id: I10fb73a67ac4bba250da4cea79ff6bae427a1613 Reviewed-on: https://gerrit.libreoffice.org/15264 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>