summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2016-10-04remove PopupControl as an intermediate stepCaolán McNamara30-151/+30
Change-Id: I31438860511af6ae00bf7a94fb29326c3ed1a10c
2016-10-04coverity#1371197 the compiler defaults should be sufficient hereCaolán McNamara2-25/+0
Change-Id: I4230d03dc58027f958d8943c0ff90f00508f7386 Reviewed-on: https://gerrit.libreoffice.org/29523 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2016-10-04sw: fix assert in MarkManager::deleteMarks()Michael Stahl1-1/+9
On loading tdf89405-1.odt there is a "DdeLink" bookmark and a range annotation at the same position: info:sw.core:17729:1:sw/source/core/doc/docbm.cxx:290: N2sw4mark8BookmarkE __DdeLink__30_388680695 11,11 11,52 info:sw.core:17729:1:sw/source/core/doc/docbm.cxx:290: N2sw4mark7UnoMarkE __UnoMark__16_673019520 11,11 11,11 info:sw.core:17729:1:sw/source/core/doc/docbm.cxx:290: N2sw4mark7UnoMarkE __UnoMark__19_673019520 11,12 11,12 While deleting the annotation's field character at 11,11-11,12 the DdeLink one is moved but the UnoMarks are special-cased and remain where they are, so just do some more sorting in this case. Change-Id: If077329bf675cdf8dd788cc145252a078aba3750
2016-10-04vcl: remove artificial image byte size limit in JPEG filterTomaž Vajngerl1-15/+0
When reading a JPEG image we limit the image raw byte size to a certain arbitrary value. This is not necessary and does not need to be enforced. Change-Id: Ia86ac2423f51a79eecf39d6afc0c81bb9b6ad1f1 Reviewed-on: https://gerrit.libreoffice.org/29521 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2016-10-04At least MSVC 2015 doesn't find sal/osl/w32/time.hStephan Bergmann1-1/+1
...when included as <time.h> (our rather sick convention, for include files other than standard headers) rather than "time.h" Change-Id: I5aacfb81de95ae4254e39badffc9c83c7ac0f58f
2016-10-04pNewPattern can never be null hereStephan Bergmann1-5/+2
Change-Id: I87d66bca7b9399e0268eb2fb4c1dfa51d4461fa2
2016-10-04Actually delegate to Bitmap's move assign opStephan Bergmann1-1/+5
Change-Id: Ib57906ead469d64d324f3820c6f5d3c49ab4cd0a
2016-10-04Avoid UBSan "reference binding to null pointer"Stephan Bergmann8-10/+10
...at least during JunitTest_sc_unoapi_2 at > ScTable::DoSubTotals(ScSubTotalParam&) sc/source/core/data/table3.cxx:2097:25 > ScDocument::DoSubTotals(short, ScSubTotalParam&) sc/source/core/data/documen3.cxx:761:104 > ScDBDocFunc::DoSubTotals(short, ScSubTotalParam const&, bool, bool) sc/source/ui/docshell/dbdocfun.cxx:1076:29 > ScCellRangeObj::applySubTotals(com::sun::star::uno::Reference<com::sun::star::sheet::XSubTotalDescriptor> const&, unsigned char) sc/source/ui/unoobj/cellsuno.cxx:5868:15 > gcc3::callVirtualMethod(void*, unsigned int, void*, _typelib_TypeDescriptionReference*, bool, unsigned long*, unsigned int, unsigned long*, double*) bridges/source/cpp_uno/gcc3_linux_x86-64/callvirtualmethod.cxx:77:5 > cpp_call(bridges::cpp_uno::shared::UnoInterfaceProxy*, bridges::cpp_uno::shared::VtableSlot, _typelib_TypeDescriptionReference*, int, _typelib_MethodParameter*, void*, void**, _uno_Any**) bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx:241:13 > bridges::cpp_uno::shared::unoInterfaceProxyDispatch(_uno_Interface*, _typelib_TypeDescription const*, void*, void**, _uno_Any**) bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx:431:13 > binaryurp::IncomingRequest::execute_throw(binaryurp::BinaryAny*, std::__debug::vector<binaryurp::BinaryAny, std::allocator<binaryurp::BinaryAny> >*) const binaryurp/source/incomingrequest.cxx:240:13 > binaryurp::IncomingRequest::execute() const binaryurp/source/incomingrequest.cxx:77:26 > request binaryurp/source/reader.cxx:85:9 > cppu_threadpool::JobQueue::enter(long, bool) cppu/source/threadpool/jobqueue.cxx:107:17 > cppu_threadpool::ORequestThread::run() cppu/source/threadpool/thread.cxx:165:31 > threadFunc include/osl/thread.hxx:185:15 > osl_thread_start_Impl(void*) sal/osl/unx/thread.cxx:240:9 > start_thread (/lib64/libpthread.so.0+0x75c9) > __clone (/lib64/libc.so.6+0x102f6c) pStyle can apparently be null, will get passed through to ScColumn::ApplyStyle (sc/source/core/data/column.cxx), where it is only used in pNewPattern->SetStyleSheet(const_cast<ScStyleSheet*>(&rStyle)); and which is apparently fine with a null argument. Change-Id: I13fbb092aab06960d820c605476b2cee58889be4
2016-10-04comphelper: move setTiledPainting() from SfxViewShellMiklos Vajna8-25/+62
And make it a static one. The primary point of that member function is to prevent invalidations during paint, and since multiple views are allowed, it wasn't extended to filter out invalidations from all views, not just from the current one. (Same goes for other callback types.) Change-Id: I23e6b2c2ff94227f2b72c481148b2d8279ae2905
2016-10-04merge sd::FuOutline with sd::FuOutlineTextNoel Grandin6-146/+35
Change-Id: Ie8191ac91175ba51f89809aaa53bc1ffacf42df0 Reviewed-on: https://gerrit.libreoffice.org/29520 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2016-10-04vcl: read image from JPEG one scanline at a timeTomaž Vajngerl3-247/+139
When reading an image from JPEG file we allocate a large buffer to hold the whole raw image before we read it into SalBitmap. If the image is large this step will spike the memory usage. This changes reading so that we allocate only the buffer for a scanline and read one scanline at a time. Change-Id: I405f4a14601e271c0293a2b75b4c9ec6c458d8a9 Reviewed-on: https://gerrit.libreoffice.org/29504 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2016-10-04simplify loopJochen Nitschke1-5/+1
Change-Id: I7c6041239fcd5f0fa29fffcb34f06085306a1682 Reviewed-on: https://gerrit.libreoffice.org/29487 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2016-10-04@since tag; sortingStephan Bergmann2-1/+3
follow-up to 2135eae2a97c17d89cb47a2074830fd2d7b2226f "let approxEqual() not scale too early for large representable integer values" Change-Id: I628e01297fea08915d0ca1c95f3ba13f7ce15db8
2016-10-04Updated coreAndrea Mussap1-0/+0
Project: help 66d3a06fa03301bbce6a17dc427f04a3527e0d7a tdf#80590 Help page for title pages Change-Id: I9daca6c8e3f453e276b14ec5780714c2abf3398b Reviewed-on: https://gerrit.libreoffice.org/29462 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2016-10-04crashtesting: use a stack with the expected dtor order for its elementsCaolán McNamara3-3/+81
contains test document which crashes if it doesn't Change-Id: Ieeee6cc7007a90d37225fffd636c9648289f04d7
2016-10-04this is used as a stack, so convert to std::stackCaolán McNamara2-20/+21
Change-Id: I248617ccbb985615f936ecd607ab7c8246ff8e71
2016-10-04remove bogus include checksNoel Grandin1-3/+0
Change-Id: Ia76f000ed10852dadc4ca0270b925efd6d8cd0b7 Reviewed-on: https://gerrit.libreoffice.org/29518 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
2016-10-04tdf#100830 drawingML import: handle <a:alphaModFix>Miklos Vajna5-0/+14
Fill transparency on the UI. Regression from commit 57450afb768c085df0ba2344aa94b5f843060178 (DOCX import: declare wps as a supported feature, 2013-12-03), as the VML import handled this. Change-Id: I654b51d51448d25d400979a4a62189b86126ac01 Reviewed-on: https://gerrit.libreoffice.org/29517 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org>
2016-10-04we just care about empty vs nonempty hereCaolán McNamara1-17/+9
Change-Id: Ie7888f611f804ed1bd235e32e21560981f116c9a
2016-10-04there’s no need to peel tildæ for separatorDouglas Mencken1-4/+3
Change-Id: Id53e5c704759d831bedd42ca9a8cd9f393ecdd0c Reviewed-on: https://gerrit.libreoffice.org/29492 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2016-10-04loplugin:mergeclasses various fixesNoel Grandin3-96/+58
better tracking of templates, ignore more noise in the plugin so the python has less log to process Change-Id: I62874236d362529bd566140ac3fcc65e734fd62c
2016-10-04OUTLINERMODE_USERMASK is useless nowNoel Grandin1-4/+2
Change-Id: Iba94c4f244aac5bd6b5abefe70061e1d037089cf
2016-10-04clang-cl loplugin: salStephan Bergmann41-957/+1083
Change-Id: If04d3f07dc8bffac8887773b5424c09848cd8f1a Reviewed-on: https://gerrit.libreoffice.org/29404 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2016-10-04loplugin:countusersofdefaultparams in swNoel Grandin57-114/+112
Change-Id: I65beb17816641cff6a07379b7ba234afe26806b3 Reviewed-on: https://gerrit.libreoffice.org/29488 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2016-10-04tdf#93894: Add unit test for this.Kohei Yoshida2-0/+40
Change-Id: Ifd38b9fde776d9be48e776972993856cfe59b477 Reviewed-on: https://gerrit.libreoffice.org/29515 Reviewed-by: Kohei Yoshida <libreoffice@kohei.us> Tested-by: Kohei Yoshida <libreoffice@kohei.us>
2016-10-04tdf#93894: Get column labels to work with formula groups.Kohei Yoshida1-14/+6
Change-Id: Ia2a09981dceae2e9809c76570300de8ca1927c1b Reviewed-on: https://gerrit.libreoffice.org/29514 Reviewed-by: Kohei Yoshida <libreoffice@kohei.us> Tested-by: Kohei Yoshida <libreoffice@kohei.us>
2016-10-04Add a bit more description here.Kohei Yoshida1-1/+2
We are creating a formula string using the tokens from the previous cell to see what it would look like if the current cell was grouped with it, then perform string comparison to evaluate for grouping. Change-Id: I29b780d44bec16c0b42990837b70435e059c7594 Reviewed-on: https://gerrit.libreoffice.org/29516 Reviewed-by: Kohei Yoshida <libreoffice@kohei.us> Tested-by: Kohei Yoshida <libreoffice@kohei.us>
2016-10-03Reverse the boolean logic.Kohei Yoshida1-3/+3
To have the 'true' value associate with action and 'false' with inaction. Change-Id: Icf61b1cb8642a72390d1f2aa45ca25fb67ec0dbd
2016-10-03add INTERCEPT test caseZdeněk Crhonek1-0/+6350
Change-Id: I87038e7f0a33e81815591765550dc08944d7eb3d Reviewed-on: https://gerrit.libreoffice.org/29505 Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
2016-10-03Bump IPHONEOS_DEPLOYMENT_TARGETTor Lillqvist1-2/+2
Change-Id: Ic65e248b4a7f99ebb354dad87157e35cf3e55424
2016-10-03Resolves: tdf#101953 controls become wider/smaller switching to/from graphicsCaolán McNamara1-0/+20
Change-Id: I20a82d1ff2f3a11b0f327eecc90a2bb30bd4df3d
2016-10-03loplugin:staticmethodsStephan Bergmann1-0/+1
Change-Id: Iac376aff079cddd030a07883f3cccf71a7ff5f91
2016-10-03-Werror,-Wdeprecated-declarationTor Lillqvist1-1/+1
'stringByAddingPercentEscapesUsingEncoding:' is deprecated: first deprecated in iOS 9.0. Change-Id: I3a95cbd4ff6ff4924bb7fe1a4c1bac4fad405856
2016-10-03set translatable attributes in .ui filesAndras Timar5-12/+12
Change-Id: Idcdf9fbbc6b980a376fc0b5d607cbb48aa1dc5f1 Reviewed-on: https://gerrit.libreoffice.org/29503 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Andras Timar <andras.timar@collabora.com>
2016-10-03Updated coreGabor Kelemen1-0/+0
Project: help 359a2f1fadaa69574238147a9c954b8a42999019 test-hid-vs-ui: Drop help for obsolete Bitmap editor controls From source/text/shared/01/05210500.xhp, referenced items ['BTN_MODIFY', 'BTN_LOAD', 'BTN_SAVE', 'LB_BACKGROUND_COLOR', 'LB_BITMAPS', 'LB_COLOR', 'BTN_ADD'] were not found inside cui/uiconfig/ui/bitmaptabpage.ui. Change-Id: Iff1fd4accaa961324ac89d38a5df3042cddfdcf5 Reviewed-on: https://gerrit.libreoffice.org/29497 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2016-10-03Updated coreGabor Kelemen1-0/+0
Project: help b17d3edd630d48518a5d4e321e12150f722e327a test-hid-vs-ui: Drop help for removed Background controls From source/text/shared/01/05030600.xhp, referenced items ['transparencymf', 'previewctl', 'gradientslb'] were not found inside cui/uiconfig/ui/backgroundpage.ui. Change-Id: Ie40e117a74492a2ba12c37156d756bc1633267e3 Reviewed-on: https://gerrit.libreoffice.org/29499 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2016-10-03Updated coreGabor Kelemen1-0/+0
Project: help b01bc2e9957861ffdcfb787595d462d243c922f8 test-hid-vs-ui: Drop documentation of removed Area Fill options From source/text/shared/01/05210100.xhp, referenced items ['TSB_STEPCOUNT', 'TSB_SCALE', 'MTR_FLD_Y_SIZE', 'CB_HATCHBCKGRD', 'TSB_TILE', 'TSB_STRETCH', 'LB_HATCHBCKGRDCOLOR', 'TSB_ORIGINAL', 'NUM_FLD_STEPCOUNT', 'RBT_ROW', 'RBT_COLUMN', 'MTR_FLD_X_SIZE', 'MTR_FLD_OFFSET', 'MTR_FLD_X_OFFSET', 'MTR_FLD_Y_OFFSET'] were not found inside cui/uiconfig/ui/areatabpage.ui. Change-Id: Ifc37878cd22cac5612ac93c1037ba9675d0a8060 Reviewed-on: https://gerrit.libreoffice.org/29495 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2016-10-03add LARGE test caseZdeněk Crhonek1-0/+9278
Change-Id: Id60b843887a9b55fa72bb26199972e32c2ab2ebb Reviewed-on: https://gerrit.libreoffice.org/29507 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
2016-10-03add KURT test caseZdeněk Crhonek1-0/+9109
Change-Id: Ie1f469eebaf85cbb0a519d43e300353dff68922e Reviewed-on: https://gerrit.libreoffice.org/29506 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
2016-10-03Updated coreGabor Kelemen1-0/+0
Project: help e7f873912a9dddbb900367eb57900da4f3a0975a test-hid-vs-ui: Fix reference to remotefilesdialog.ui From source/text/shared/guide/cmis-remote-files.xhp, we did not find file hid/uiconfig/fpicker/ui/remotefiledialog.ui. Change-Id: Ic653879047ed013722a70983bbec93d814d158b8 Reviewed-on: https://gerrit.libreoffice.org/29498 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2016-10-03Updated coreGabor Kelemen1-0/+0
Project: help 840a0ad51ed5e6b93526452d4ce1784747e4b29c test-hid-vs-ui: Correct references to optiondbfieldpage.ui file From one of ['source/text/shared/02/01170904.xhp', 'source/text/shared/autopi/01120400.xhp'], we did not find file extensions/uiconfig/sabpilot/ui/optionsdbfieldpage.ui. Change-Id: I28d250f89e246a6d291e8739afe0a8b7bb7c186c Reviewed-on: https://gerrit.libreoffice.org/29496 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2016-10-03Updated coreGabor Kelemen1-0/+0
Project: help 78d33a588bbdca06736a9c8ccacabf48371c7427 test-hid-vs-ui: Fix reference to FrameAddPage From source/text/swriter/01/05060900.xhp, referenced items ['FrmAddPage'] were not found inside sw/uiconfig/swriter/ui/frmaddpage.ui. Change-Id: I1ee6472a6ecaeb5d73b192ef0e9d6efdf12e1736 Reviewed-on: https://gerrit.libreoffice.org/29494 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2016-10-03Updated coreGabor Kelemen1-0/+0
Project: help fbd92ec0fed986cb1435cf6db812b13456896bd1 test-hid-vs-ui: Remove help about removed UI elements From source/text/shared/autopi/01170000.xhp, referenced items ['windows', 'outlook', 'ldap'] were not found inside extensions/uiconfig/sabpilot/ui/selecttypepage.ui. Change-Id: I0737d77f3786ab835569d1bdddb4548e844f0e2a Reviewed-on: https://gerrit.libreoffice.org/29493 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2016-10-03Updated coreAndras Timar1-0/+0
Project: dictionaries e2a5fb6312c0b3c7533206d29b8779fd87d48f2a Update pt_PT dictionary to version 16.10.1.2 Change-Id: I0f66f15b594bebaefc2b8ffbc26bff5450ebf292 Reviewed-on: https://gerrit.libreoffice.org/29509 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2016-10-03tdf#101094 (36): Fix behaviour of GET in fetching Headers onlyGiuseppe Castagno6-26/+106
Implement a better way to GET only headers, as HEAD method substitute. Wrote a new version of GET, specifically for 'no payload' service because sometimes neon was returning an internal error about: 'Compressed response was truncated' but without a specific error state. Change-Id: I84a3e5635193c3f68d335eba7af41b05980f4192 Reviewed-on: https://gerrit.libreoffice.org/29502 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Giuseppe Castagno <giuseppe.castagno@acca-esse.eu>
2016-10-03deal with even more typos in comment plus bin these ****fences*****Douglas Mencken2-31/+31
Change-Id: I9ed2db862797f7ffedf6ae0b27ba99c54882a981 Reviewed-on: https://gerrit.libreoffice.org/29501 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Andras Timar <andras.timar@collabora.com>
2016-10-03Surely this is Linux-only codeTor Lillqvist1-0/+4
The initial commit in 2012 even says so, and nothing has changed it since. Feel free to fix more properly by making sure this code can be called only on Linux.. Change-Id: Idb0a2b5594daa0cde7f4797b51ba3e5876170f9f
2016-10-03Resolves: tdf#101711 problems with attempt to remove unused bg imagesCaolán McNamara6-34/+18
only do the save, unset (and possibly restore) of a bg image on the stylesheet if it has one owner, this continue to make the original scenario function without (so far anyway) the various reported problems Change-Id: I73382961973b1c53bf2ceff205615727dd378c77
2016-10-03Update min OS version to a more realistic value for iOSTor Lillqvist1-3/+3
Change-Id: I63617c49ce176180709a32c59a468c6abe076a3d
2016-10-03Also look for iOS SDK 10.0Tor Lillqvist1-1/+1
Change-Id: Ibc975a3c61542a2872a48c310351653734c225ce