summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-06-04Build default user AutoText file MyTexts.bauLaurent Balland-Poirier
Unzip Mytexts.bau and add files to project Add empty mimetype file Change-Id: Icc8099bcc4fe51e12b5314a4f25fcaf5f2e0938b Reviewed-on: https://gerrit.libreoffice.org/9639 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-06-04desktop: fix includesThomas Arnhold
Change-Id: Ia51cd6fcdb84c049907b0aeda20774558198b575
2014-06-04testFdo52989 kept failing for my Mac build at leastStephan Bergmann
<vmiklos> sberg: the comment says that it was 2, so unless you're interested in debugging it, i would just lower the barrier (423 -> 369) Change-Id: I0269eab4eee594c4d7aad1c710ed389443208bc4
2014-06-04Move AutoCorrection files to extras/source/autocorrLaurent Balland-Poirier
Move all files concerning AutoCorrection from extras/source/autotext/lang/{lang}/acor to extras/source/autocorr/lang/{lang} Update CustomTarget_autocorr.mk and Package_autocorr.mk Add missing mimetype files (hr, ja, ko, zh-CN and zh-TW) Change-Id: Ic33575d0ce9df294e8a809f7e1605238aaa55ec3 Reviewed-on: https://gerrit.libreoffice.org/9599 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-06-04loplugin:literaltoboolconversionStephan Bergmann
Change-Id: Ie871fa9378bbb34eacd3205f9485a6f89f833674
2014-06-04Be more sensible about checking buffers of VML points we write.Michael Meeks
Change-Id: Id3811dbe0cf2510ef6a851804b3886c14eca01b6
2014-06-04Avoid uninitialized memory read/compare on short reads.Michael Meeks
Change-Id: I7537f6d22780bace6ab6da06e087a3d27da8de05
2014-06-04coverity#735682 Unchecked dynamic_castCaolán McNamara
Change-Id: Ie3ac1e9960afa71e5cf221bb67b8b8ccb609dc38
2014-06-04coverity#738062 Uncaught exceptionCaolán McNamara
Change-Id: Id123422e23f93b1c0062cac190fcf93a253cb629
2014-06-04coverity#738055 Uncaught exceptionCaolán McNamara
Change-Id: Ic4bb1603894ce7ff1b72e1290501d6cd17e6d762
2014-06-04coverity#738052 Uncaught exceptionCaolán McNamara
Change-Id: If6767fdc7a3e462cbd88dcc879857676037e80ef
2014-06-04coverity#737265 Uncaught exceptionCaolán McNamara
Change-Id: Icb36e8e72c6d99e9a72d360382855f325886f99b
2014-06-04coverity#737244 Uncaught exceptionCaolán McNamara
Change-Id: I9e34e14d1266310458bb491259e4bf9880e8a19f
2014-06-04coverity#737243 Uncaught exceptionCaolán McNamara
Change-Id: I4bef14453d076f11066a695bc4a948cea5cfd40b
2014-06-04coverity#737167 Uncaught exceptionCaolán McNamara
Change-Id: I9ac3ffbecf8c9efc0b69ad4606c61dbf8fa5a0e9
2014-06-04fdo#79597 Password UI: correct typo for 1 characterLaurent Balland-Poirier
Display a different string in case of 1 character for minimum length Change-Id: Iba2fbbb7d4101718def7c79ce5354debf5d97041 Reviewed-on: https://gerrit.libreoffice.org/9631 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-06-04Missing gb_CppunitTest_use_vclStephan Bergmann
Change-Id: If3d2dbe70fc3448ca6ab8ef8af62f5b571888c86
2014-06-04fix index dialog regressionCaolán McNamara
thanks to sk94 for noticing this when trying to convert this to .ui Change-Id: If7130d53acb7c194cf0a9a4301f3573789888b86
2014-06-04Avoid static BasicDLL (that would be destroyed after DeInitVCL now)Stephan Bergmann
Change-Id: Id8968a7746815ecce79b6eb1ce971b74e770efa4
2014-06-04RTFDocumentImpl::dispatchValue: fix indentationMiklos Vajna
Change-Id: I521462315ebe8b69b65e05df98042e7a33d60dbb
2014-06-04fdo#78907 : File crashed while saving.PriyankaGaikwad
- There is pagebreak in file and footer has nested table. - While exporting LO write section break instead of PAGE_BREAK. - Due to this it was writing two sections in file and same footer for both sections. - This was causing wrong table depth values due to this it was crashing while writing table. - So in MSWordExportBase::OutputSectionBreaks if next node has RES_BREAK(page break) then bNewPageDesc value should be false. Change-Id: I2ccc4e48a26253716253a7280a244f06e172770a Reviewed-on: https://gerrit.libreoffice.org/9568 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Miklos Vajna <vmiklos@collabora.co.uk>
2014-06-04Missing gb_CppunitTest_use_vclStephan Bergmann
Change-Id: I803fb17e29f5548897751a212565e8e60f8f8bf5
2014-06-04Missing new files from previous commitStephan Bergmann
Change-Id: Ic8d7c13602c8831e411181c802eb825124578b19
2014-06-04DeInitVCL at end of testsStephan Bergmann
This required some changes to the framework: * Init-/DeInitVCL is no longer done per individual test in BootstrapFixture, but once per CppunitTest invocation in a new vclbootstrapprotector (similarly to the exisiting unobootstrapprotector). CppunitTests that need VCL now need to declare gb_CppunitTest_use_vcl. * For things to work properly, the UNO component context needs to be disposed from within DeInitVCL (cf. Desktop's Application::DeInit called from DeInitVCL). The easiest solution was to introduce an Application::setDeInitHook (where the hook is called from DeInitVCL) specifically for vclbootstrapprotector to call. * PythonTests don't (yet) call DeInitVCL; they still hook into BootstrapFixture's original test_init functionality (to call InitVCL), and do not make use of the vclbootstrapprotector. Change-Id: I4f3a3c75db30b58c1cd49d81c51db14902ed68b2
2014-06-04Cover ctors/dtors of our TestFixtures under the protectors, tooStephan Bergmann
Change-Id: I4c3030e5a205bd102d0427e74d2fe3b828ff5ae6
2014-06-04Include gdb backtrace in PythonTest done.long (just as for CppunitTest)Stephan Bergmann
Change-Id: Idc671a4af5474443130afed2dd6f0728c1504319
2014-06-04Demystify magic poniesStephan Bergmann
Change-Id: I7e619daf8743d3471ece72d81f6cf1bb61741646
2014-06-04WaE: warning C4101: 'e' : unreferenced local variableThomas Arnhold
Change-Id: Ib5aa5f401eabedfdaebea1dea8f48f284dbccdd5
2014-06-04WaE: warning C4305: 'argument' : truncation from 'double' to 'GLfloat'Thomas Arnhold
Change-Id: I8afe523cfe1be28bc5427c5e5852bea0be2aaea3
2014-06-04WaE: warning C4101: 'ex' : unreferenced local variableThomas Arnhold
Change-Id: Ib8b71b50fe52a7cc4e261626549ac3e067851797
2014-06-04forms: expand DECLARE_XCLONEABLEThomas Arnhold
Change-Id: I2a468e40489797e33935b79a27459ab408558124
2014-06-04forms: expand DECLARE_DEFAULT_DTORThomas Arnhold
Change-Id: I52b091402ec23f9c5eb87ae2212cc5b4986c6435
2014-06-04avoid problems with poppler's and vcl's FontInfo during runtimeMarkus Mohrhard
Change-Id: I1dbd256812cccae1e6ed0ad8bb34ce427e5e5be8
2014-06-04fix indentationMarkus Mohrhard
Change-Id: Ie4609df2ae19c92d844c0f0ecf7c67d23c8baeba
2014-06-04remove whitespaceMarkus Mohrhard
Change-Id: Ibe29f47ad478cc88d299f567fa36e73daf857ec2
2014-06-04remove whitespaceMarkus Mohrhard
Change-Id: Iae0f6b9818f84a92c46b24f90d3051c7b6a45d94
2014-06-04remove whitespaceMarkus Mohrhard
Change-Id: Iff12a4106369114eb785c0ce242c0e296a877495
2014-06-04remove whitespaceMarkus Mohrhard
Change-Id: I08a89e40d24bc6f4b106c5063c197fe201f32bf6
2014-06-04remove whitespaceMarkus Mohrhard
Change-Id: Ia5ed1a0c12ffc95b31cbbd43b6291218935e2296
2014-06-04remove whitespaceMarkus Mohrhard
Change-Id: I1998ee6528e9d55997029d68a2bdc71a70dd2411
2014-06-04remove whitespaceMarkus Mohrhard
Change-Id: I03aa2e78a57bda64119458eb72beade39240ab39
2014-06-04remove whitespaceMarkus Mohrhard
Change-Id: Ifa5d662a3ef723c29b4d6839f16d4b920e1c773d
2014-06-04fix new[]/delete mismatchMarkus Mohrhard
As seen by ooo90105-1.ods with memcheck Change-Id: Ib976632aa52556132b3d05ebb33e8fb64d8d9890
2014-06-04fix refresh problem with 2D OpenGL chart and OpenGLWindowMarkus Mohrhard
Change-Id: I32f23967a826262051495d57a4dd529ca3694548
2014-06-04Avoid accessing freed memory and freeing already freed resourcesTor Lillqvist
Seen in smoketest in a 4.2-based branch, but might perhaps happen in master too. Should not hurt in any case to be more careful. ImplFreeSalGDI() is called both from SalAbort() and from DestroySalInstance(). Change-Id: Ifac37e8ecfb432848bd3451dbda8634c59a06fba
2014-06-03writerfilter: fix log areaMichael Stahl
Change-Id: Iddedd58dbcdd122ec4177bfdd5e97b9ceca18435
2014-06-04Add more source files for debugging convenienceTor Lillqvist
Change-Id: I305870bd067d015d975b7a887bece91819810ec4
2014-06-04Add (debugging) function to get the symbolic name of a MetaActionTor Lillqvist
Change-Id: I3c1e5c23e7be636cc93c97da0c2db00ebb1050e3
2014-06-03fixup coverity#1219801Caolán McNamara
Change-Id: I2bc26296d11c49036ffcb0de661d22a8c2f45338
2014-06-04Avoid possible memory leaks in case of exceptionsTakeshi Abe
Change-Id: I45929aae52fa106b5f5c0199f8ce8b60c0ac5438