summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2016-03-05tdf#97906 Calc: Correct cell reference shortcut keysYousuf Philips3-27/+9
Remove Shift+F4 shortcut key for cell reference and add it to the OOo Legacy compatibility mode. Improve wording of cell reference error message. Unify shortcut for Data Sources to Ctrl + Shift + F4. Change-Id: I0f4ab3768d2663984bb294763c2e4b299c5e8186 Reviewed-on: https://gerrit.libreoffice.org/22803 Reviewed-by: Yousuf Philips <philipz85@hotmail.com> Tested-by: Yousuf Philips <philipz85@hotmail.com>
2016-03-05tdf#88027 Make insert date and time work in es, fi, ru, and ptYousuf Philips2-0/+26
Change-Id: I34f25d0e37c48335b458bc2aa92150500106ff29 Reviewed-on: https://gerrit.libreoffice.org/22792 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Yousuf Philips <philipz85@hotmail.com>
2016-03-05tdf#87610 Replace Bookmark with Anchor in Writer WebYousuf Philips2-1/+12
Change-Id: Ia698aec5a4ea9bb2452263f5ff975e045da66393 Reviewed-on: https://gerrit.libreoffice.org/22747 Reviewed-by: Yousuf Philips <philipz85@hotmail.com> Tested-by: Yousuf Philips <philipz85@hotmail.com>
2016-03-05tdf#91857 Tweaks to the slide and slide show menusYousuf Philips2-11/+14
Change-Id: Ie4bfb5525fe56da0cd02e8d5d42bfeef438ff664 Reviewed-on: https://gerrit.libreoffice.org/22736 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Yousuf Philips <philipz85@hotmail.com>
2016-03-04Reverting Bubli's fix to make the buttons on the leftYousuf Philips1-1/+1
Change-Id: I65f1574d48f2c7f29b7dc4f642fc4713442ce743 Reviewed-on: https://gerrit.libreoffice.org/22920 Reviewed-by: Yousuf Philips <philipz85@hotmail.com> Tested-by: Yousuf Philips <philipz85@hotmail.com>
2016-03-04tdf#62255,tdf#92058: PPTX import: Incorrect inheritance of default table styleMatus Uzak3-2/+29
The default table style defined in tableStyles.xml file can be used when a table is initially inserted into a document. It must not be applied by default to any of the tables not referencing a table style explicitly from the tableStyleId element. Change-Id: I025cdfba352c87a32f9a1e297fbc8b9fc2c8c0a4 Reviewed-on: https://gerrit.libreoffice.org/22619 Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de> Tested-by: Katarina Behrens <Katarina.Behrens@cib.de>
2016-03-04PPTX import: Table cell props: Override default graphic style if applicable.Matus Uzak1-0/+2
If no fill type is defined for a table cell, then set it to XML_noFill explicitly, in order to override the fill type defined by the default graphic style or the graphic style named standard, added by LO and exported into ODP. Change-Id: I9c5aa4c2a939ee7b8c75ae686d845cd14a718254 Reviewed-on: https://gerrit.libreoffice.org/22618 Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de> Tested-by: Katarina Behrens <Katarina.Behrens@cib.de>
2016-03-04do the calculation check only conditionally, tdf#91794 follow-upEike Rathke1-2/+4
... not in all debug builds. Change-Id: I6f53c6c6860ee00b740484ed31317d5e58922082
2016-03-04tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionalsRohan Kumar16-58/+45
I made small changes to disable some test code conditionally by adding a few new debug macros. Change-Id: Ieaf6f1b29343fb896cc64163a116c629165e8db3 Reviewed-on: https://gerrit.libreoffice.org/22711 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
2016-03-04tdf#79679 vcl: dashed lines show as solid lines when importing EMF filesChris Sherlock4-46/+27
Issue is a regression in commit 09c722873b2d378d2d155f5f1dd7d8f3fb2012e9. (EMF/WMF: fix rendering of pen styles (dash, dot, dashdot, dashdotdot). I've looked at how the latest version of Word on the Mac works, and it turns out that the spacings for the PenStyle enumerations in the LogPen objects for all the create pen EMF records are as follows: * PS_DOT - ■ □ ■ □ ■ □ ■ □ ■ □ ■ * PS_DASHDOT - ■ ■ ■ □ ■ □ ■ ■ ■ □ ■ * PS_DASHDOTDOT - ■ ■ ■ □ ■ □ ■ □ ■ ■ ■ (where ■ is the actual filled in area, and □ is the space between the filled in areas) In other words, each dash fills in the space of three dots, and there is the one dot worth of empty space between the dashes and dots. Each "dot" has a width and height equal to the width specified in the pen. So basically, we seem to be arbitrarily setting the dot, dash and distance lengths arbitrarily, which were reasonable guesses but tended to produce very odd lines at different zoom levels. Change-Id: Ie8b5fa396e4fb0f480cb3594c8129a59f472c1b8 Reviewed-on: https://gerrit.libreoffice.org/22886 Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com> Tested-by: Chris Sherlock <chris.sherlock79@gmail.com>
2016-03-04follow up of tdf#94635Winfried Donkers1-3/+3
fix no opcode mapping warnings: warn:sc:32739:14:sc/source/filter/oox/formulabase.cxx:1431: OpCodeProviderImpl::initFuncOpCode - no opcode mapping for function ODF 'ORG.LIBREOFFICE.FORECAST.ETS.MULT' <-> OOXML '_xlfn.FORECAST.ETS.MULT' 'ORG.LIBREOFFICE.FORECAST.ETS.PI.MULT' 'ORG.LIBREOFFICE.FORECAST.ETS.STAT.MULT' Change-Id: I55bbf79b40944d76486085f5aceb842197c51b5c Reviewed-on: https://gerrit.libreoffice.org/22914 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
2016-03-04Resolves: tdf#98399 RET_USER_CANCEL is non-zero and returned on cancelCaolán McNamara1-1/+1
Change-Id: Id4231454dfb34cac6ee89d63beb18a83c63a44c1
2016-03-04duplicate definesCaolán McNamara1-3/+0
Change-Id: Ie3a8fbd430651dafaa837fabad0d0f818449b3fb
2016-03-04Work around -Werror,-Wunused-macros with clang-clStephan Bergmann1-0/+3
clang-cl as-is does not provide the intrinsics provided by MSVC; you need to explicitly include Intrin.h (provided by clang) for that. So, as a hack, specify CC/CXX as clang-cl.exe -FIIntrin.h ... to have the intrinsics always available. But Intrin.h includes stdlib.h, so by the time sal/osl/w32/random.c defines _CRT_RAND_S before including stdlib.h, the latter has already been included without _CRT_RAND_S support. So, as a second hack, specify CC rather as clang-cl.exe -D_CRT_RAND_S= -FIIntrin.h ... But then clang-cl starts to emit -Werror,-Wunused-macros, as defining _CRT_RAND_S in the main file has no effect here. Change-Id: I5dfe9872dea7e8eb476d9260f17ab8d8893f48af
2016-03-04clang-cl: Enable more warnings etc. (like in the Clang/GCC case)Stephan Bergmann4-7/+27
Change-Id: Ia1fb09b89d3ccc3c7f4a11799f0d8eac99c6c7a9
2016-03-04-Werror,-WshadowStephan Bergmann1-3/+3
In the second part, looks odd that those two lines are a perfect copy of what is already done near the start of the function, but I have no insight at all into that code, so just leave it at that. Change-Id: I6b1d973f77a3d9389880ddec500968144ba615f2
2016-03-04-Werror,-WshadowStephan Bergmann1-1/+1
Looks odd that this isGet block is a perfect copy of what is already done before this else-if block, but I have no insight at all into that code, so just leave it at that. Change-Id: Ieefd6618cb6b0dc49bc4d2c4733b02be2a8e3f7e
2016-03-04-Werror,-Wnon-virtual-dtorStephan Bergmann1-0/+1
This looks like a real bug, causing leaks in the derived VistaFilePickerImpl (but harmless for the derived AsyncPickerEvents). Change-Id: Ic0de3f56574b89fb45eccb09fb27b78427f712d4
2016-03-04Looks unusedStephan Bergmann1-9/+0
PATH_MAX was reported unused on Windows with clang-cl, but the whole block seems rather a leftover than something that is really required. Change-Id: I545701ef83de0c2a1d74457778b86b70e334a457
2016-03-04Constness issuesStephan Bergmann4-31/+31
Change-Id: Ib72b6225f20e1e53e9d811ddb2d266f17f57404b
2016-03-04Avoid more warnings in external includes (clang-cl)Stephan Bergmann1-0/+3
Change-Id: Ia0fe12b1159a5fa9fd36b8731bfab178b403e67e
2016-03-04-Werror,-WreorderStephan Bergmann1-1/+1
Change-Id: I57a5c19143d59cfec42b0109846b7d62fec2b0ad
2016-03-04Silence -Werror,-Wnon-virtual-dtor in generated so_activex.h (clang-cl)Stephan Bergmann8-6/+62
Change-Id: If9472d25f469030102b26894793ba45ab0fafaa3
2016-03-04Silence -Werror,-Wmissing-field-initializers in END_OBJECT_MAP (clang-cl)Stephan Bergmann1-1/+7
Change-Id: I726679681137e54d55af13ad1d4900525fa60eba
2016-03-04-Werror,-Wsign-compareStephan Bergmann3-3/+15
Change-Id: Ia7b0518a05cda8881ab6feed9852e9f060813b5c
2016-03-04crashtesting: moz397551-1.svg detect self-referencing 'use' loopCaolán McNamara1-5/+34
Change-Id: Ibc9001f02c89bcfdff396cd694d0de378c6d1863
2016-03-04CppunitTest_xmlsecurity_signing: add signature removal testcaseMiklos Vajna2-0/+28
Fails with the previous commit reverted. Change-Id: I050a03fa923980e46b31eff457d0b83f6c38ceaf
2016-03-04xmlsecurity OOXML export: handle keeping all signatures but oneMiklos Vajna2-8/+37
The removal of the _xmlsignatures sub-storage in DocumentSignatureHelper::OpenSignatureStream() serves 3 purposes: 1) Remove no longer needed signature streams 2) Truncate signatures relation stream 3) Truncate still needed signature streams 2) and 3) could be done using io::XTruncate as well, but if the whole storage is removed to handle 1), then individual truncate() calls are not necessary. Change-Id: Id9ed9c87c94f340dc947124b28f085561798d361
2016-03-04xmlsecurity: extract signature removal logic from DigitalSignaturesDialogMiklos Vajna3-17/+20
So that it'll be possible to call that code without an active dialog, from a headless unit test. Change-Id: I1728a666ff5d84b337efd7e2b7eb68469896257a
2016-03-04cid#1326861,1326862: Eq: Problems with implementation of equals()Stephan Bergmann2-27/+1
Cloneable, odd additional equals overloads, odd hasCode implementation---all smells like clueless cargo cult. And I see no place where it would get used. Change-Id: Icca89531ce9181fb47eacfb6fae704f4f45012a9
2016-03-04This ScriptEntry ctor is always called with empty languagedeppropsStephan Bergmann3-10/+4
Change-Id: Ia8ddfecf2f809e9f0132ba59812446973532476c
2016-03-04Scripting.location is unusedStephan Bergmann4-16/+7
Change-Id: Ia534b5aa579a678f8b0273e6c8c12a6ad335c67a
2016-03-04ScriptEntry fields can be finalStephan Bergmann1-6/+6
Change-Id: I7616641584b7ea8192cf3724d8b7d5b88af39da6
2016-03-04Turn forwarding among ScriptEntry ctors around, dropping oneStephan Bergmann1-19/+11
Change-Id: If3c86c7e5c4acaf4a3e48194e24c3c73e4e99499
2016-03-04Remove unusd ScriptEntry ctorStephan Bergmann1-4/+0
Change-Id: I7109877e789659b87cbc16e9c5da39dcc8249e09
2016-03-04Forwarding-only ctor, can be privateStephan Bergmann1-1/+1
Change-Id: I9ed2aa9c2bf2e17705dc711560154a9596c8264a
2016-03-04This ScriptEntry ctor is only needed by ctor of derived class ScriptMetaDataStephan Bergmann1-1/+1
Change-Id: If3e6aae326aa53825edca9d5dc207d185d288cce
2016-03-04Remove unused ScriptEntry.setLogicalNameStephan Bergmann1-4/+0
Change-Id: Iad58e4227433b766bbdce92a53c95aed48320f88
2016-03-04Parcel.getByName apparently wants to return ScriptMetaDataStephan Bergmann3-10/+10
Change-Id: I4a710384ec3a0d719f2ad1fbbe7b43b0be1fa1d9
2016-03-04tdf#98052 - polypolygons were not drawn on the alpha deviceMarco Cecchetti1-0/+2
In OutputDevice::DrawPolyPolygon when b2dpolygon are used for drawing the source polygon is not drawn on the alpha device. Change-Id: I54f4e5a13469d9844866cea61b074420219b836d Reviewed-on: https://gerrit.libreoffice.org/22892 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
2016-03-04cid#1327083 SWL: Sleep with lock heldStephan Bergmann1-1/+1
It's unclear to me why the disposeOffice method was marked "synchronized" in the first place with fbd72be142ed23b3b526c8d0c3e002f15ca7ec74 "INTEGRATION: CWS qadev16: #114831#." Maybe just some cluelessness? Lets see whether we ever run into any problems after removing it. Change-Id: I1f262b6b4b4f4e8911754a6b3fa3d61f5df0aeae
2016-03-04lok: Export only programmatic style namesPranav Kant1-34/+9
First, it reverts b0111f494c1ee2d75ac4f1544c06c24d464cc416. It was a bad idea to export UI names via LOK because the client would need the programmatic ones anyways for UNO commands. We cannot expect UNO commands to accept UI style names and work, though that's another thing that they will work in most cases because mostly UI names are equal to programmatic ones. Clients are now supposed to have their own UI name <-> programmatic name mapping, if they want style names to use for translations. Secondly, it fixes a bug that was already there mixing programmatic names with UI ones in an effort to put default writer styles on the top of the list. Change-Id: I307f987fe740b3c43b0e14ec4773edcb672a11df Reviewed-on: https://gerrit.libreoffice.org/22810 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Andras Timar <andras.timar@collabora.com>
2016-03-04add config namespace cause we use config: elementsCaolán McNamara1-0/+1
Change-Id: I34d47e854999eb2e8fd118351ff3b3577a1083d7
2016-03-04Don't build ui-previewer in the App Store caseAndras Timar1-2/+3
Change-Id: I25ca4b8672702095cc04723bc9c6bdf01a06382f
2016-03-04harden OS X code signing script (handle spaces in bundle name)Andras Timar1-9/+10
Change-Id: Icf9bdcd0bcd988d32477cf9ab7f8d917ff6a2275
2016-03-04remove unopkg script from MacOSX folder of sandboxed appAndras Timar1-1/+2
Change-Id: Ib59953225480e6923e418b966cce289f07f863b5 (cherry picked from commit f16f8ee5c2a269339a36bf6af9b24b50b4328a37)
2016-03-04Don't put symlink to MacOS folder of sandboxed appAndras Timar1-0/+2
Conflicts: ure/Package_install.mk Change-Id: Ica4cfd3befa67aa1d03140ad2a766dfbb208ec0a (cherry picked from commit d6785e162fa8cc4b03de76cd2d089d62ae45c068)
2016-03-04Don't package unoinfo in case of Mac OS X like app structureAndras Timar1-1/+1
Change-Id: I517ed7ac43b0655c7e571e0b9fead32c4f2e7948 (cherry picked from commit ec51b41ba4831ce43a4f3ead47c72d2d6a884f61)
2016-03-04shell script in Contents/MacOS is not acceptedAndras Timar1-1/+1
(cherry picked from commit c5d91c02192f4272ad2a200beffa059a7dc7a146) Conflicts: scp2/source/ooo/file_ooo.scp Change-Id: Ib047b763bfeff9dbf43db8fc11e6fd7f1fa179f8
2016-03-04pgsql-sdbc: put local code and constants in anonymous namespaceLionel Elie Mamane1-231/+215
Change-Id: Iaccda39ddf651f6b2ef326c9b3903670c25bcdde