summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-06-06Some more modules at least building with mingw64Fridrich Štrba
Change-Id: I3ea039655aecb7885bb310b1f2c29d66f9f7bb4f
2013-06-06OpenSymbol is a symbol fontLuboš Luňák
Change-Id: I2489b836950db63f5f53f8a272970b7769c29282
2013-06-06Don't require vclplug_svp with --enable-headlessRiccardo Magliocchetti
Fixes build. Change-Id: I4280cc26acd2278003f3bdee641a3168b01e17cb
2013-06-06indentationLionel Elie Mamane
Change-Id: Ib2011a589c12b585c6045fdc87b08f711ed9edc6
2013-06-07sal_Bool to boolTakeshi Abe
Change-Id: I58efb9d026203c77d3806552bd4280a4d16d5111
2013-06-06fix WM_CLASSLuboš Luňák
VCLSalFrame is definitely not the name of any instance of LibreOffice. Change-Id: Iba227061c0c0541290c90876c94d1016aa1e783e
2013-06-06add StartupWMClass= to .desktop files (bnc#777070)Luboš Luňák
The actual purpose is to help Plasma taskbar associate taskbar items with .desktop files for the purpose of creating launchers. LibreOffice's WM_CLASS handling is rather broken, but the class part of it usually ends up being 'libreoffice-<component>', which however doesn't match names of .desktop files or executables. I fear renaming .desktop files would cause too much breakages in various places that expect the current names, so adding StartupWMClass will help Plasma match them. Change-Id: Ia946307b429d9a7c00408b2b508726fdc88908ac
2013-06-06Resolves: #i122455# Change tab order of paragraph panel. CleanupAndre Fischer
(cherry picked from commit 2a7381f63b45e6a341db2ece259cd0d6f6b6b02d) Conflicts: svx/source/sidebar/paragraph/ParaPropertyPanel.cxx Change-Id: Ibcb11980989b9821929e5261765a3973bbbefd9a
2013-06-06Resolves: #i121334# Changed default for charts background to be none...Armin Le Grand
(from white) to allow fill settings in the various apps to have an effect (cherry picked from commit 0050a8e4eace17ed1b55c7ec919edaa0daadc3a7) Conflicts: chart2/source/model/main/PageBackground.cxx sc/source/ui/drawfunc/fuins2.cxx sd/source/ui/view/viewshe2.cxx Related: #i121334# turned back chart non-fill defaults... done the non-fill using tooling when creating new chart modules (cherry picked from commit af9220c24c9d80e5415d9d7d8f273b28d0d27cdb) Conflicts: chart2/source/model/main/PageBackground.cxx sc/source/filter/starcalc/scfobj.cxx sd/source/ui/view/viewshe2.cxx svx/inc/svx/charthelper.hxx svx/source/svdraw/charthelper.cxx sw/source/ui/table/tablemgr.cxx Related: #i121334# deactivated setting chart OLE background to transparent... for better UI experience and better back-compatibility to other OpenOffice derivates (cherry picked from commit 5fa621198a981ea994d9903298e8a1d884ee686b) Unname unused arguments to prevent compiler warnings. (cherry picked from commit c3c4df7647d8d4ab1425bb3c7f38932c4adcbe74) Change-Id: I1b4579aca701a4d637d21d7963b87f637458d0a5 01855cc3d4ec3c321109f924f6de4cdfbec4cd5d 18757f64ae84a415dc781929db4b76f571172ab1 de9879c2e1c249c0d957e4e46723b167ae1a8e90
2013-06-06WaE: unused variable 'pFilt'Tor Lillqvist
Change-Id: I58bacc42d9b596ffef62237d0554fb0a3bff50a1
2013-06-06simplify WM_COMMANDLuboš Luňák
it's not necessary to prepend /bin/sh to WM_COMMAND, soffice itself already is executable Change-Id: Iece77f901f233c8c675f524c8c88510d0cfc1c52
2013-06-06fix .po file path in Gallery makefileAndras Timar
... which made localization actually work. I hope I did not oversimplify a general scheme. Change-Id: I942844fad6f869ad91b4cffff4134f06dd0beeee
2013-06-06Updated coreCaolán McNamara
Project: help da1f6d1195f1bd42bd4abbea49416bede5f6b069
2013-06-06convert concordence entry dialog to .ui formatCaolán McNamara
Change-Id: I52f88e6be67c4473ccf1b999ac7cb346b1c4f9ee
2013-06-06Fix previous fixStephan Bergmann
Change-Id: I2d7ea38b743d78327fd19886019c1106bc1316d6
2013-06-06-Werror=sign-compareStephan Bergmann
(ListBox::GetSelectEntryPos returns sal_uInt16) Change-Id: Ia6e4bf4354523f5112ee3ade1d3da6db0f9ab2c4
2013-06-06Prevent out-of-range values coming from ListBox GetSelectEntryPos.Javier Fernandez
Change-Id: Ia787c412408ef53db3c8458f54c7843c669c81ad Reviewed-on: https://gerrit.libreoffice.org/4174 Reviewed-by: Lionel Elie Mamane <lionel@mamane.lu> Tested-by: Lionel Elie Mamane <lionel@mamane.lu>
2013-06-06bnc#382137 DocxAttributeOutput: don't store address of local variableMiklos Vajna
AttributeOutputBase::TextField() passes the address of its local variable to WriteExpand(), and DocxAttributeOutput::WriteField_Impl() stored this. When it was to be used, the variable already went out of scope, resulting in a crash. Given that SwField is an abstract base class, the easiest way is to just copy the field and manually delete it when it's no longer needed. Change-Id: I9d1fe2485277f1ac21a576d7ff0d05003f0ac8a1
2013-06-06another attempt at followon patch for fdo#38385 attempt to detect rtlNoel Power
First attempt confused things ( and was error prone ) by introducing maStart and maEnd BorderLine members to BorderLine model. Better to just leave maLeft & maRight and attempt to swap if RTL. Of course tbh this is somewhat of an optimistic attempt to swap start and end borders if needed. I am not at all sure though that I am dectecting the RTL-ness of a cell in the correct way. There are some comments in the code in any case that reflect my uncertainty ( hopefully they will be of use if/when some tweak is needed ) Change-Id: Ie953d73067630f0041fa037c6120cdbda683e796
2013-06-06Revert "follow patch for fdo#38385 attempt to detect rtl"Noel Power
This reverts commit d2cccde341af33b72378f3e7b0e8dd9ff1cd5e65.
2013-06-06Remove remnants of help agentCaolán McNamara
it was removed with 66714f1888eaccef4eb5341971278ae7dfafa16b but gobs of code (and UI) still existed to collect the help id and give it to the missing help agent with various UI visible options and buttons to control the help agent which isn't there Change-Id: I625da27b3046d481e43f4d35d32cc7063a1c6291
2013-06-06Slowly, but surely going on compiling for mingw64Fridrich Štrba
Change-Id: I590aa6a854a040281bf73d5be768c05d4906a984
2013-06-06Remove RTL_CONSTASCII_(U)STRINGPARAM (sd)Chr. Rossmanith
Change-Id: Ie936ffa0ca8e97893251ef99784a257815526957 Reviewed-on: https://gerrit.libreoffice.org/4170 Reviewed-by: Luboš Luňák <l.lunak@suse.cz> Tested-by: Luboš Luňák <l.lunak@suse.cz>
2013-06-06fdo#64283: SwMailMergeDlg: add back missing initializeMichael Stahl
(regression from b248624126c271c88381d3dad6e04fc954f65779) Change-Id: I0ed8c4ec91a095babccd089c7fe4508d123ba86d
2013-06-06fdo#41226 Add error handling of recursed GetCaseCorrectPathNameEx()Isamu Mogi
GetCaseCorrectPathNameEx() with bCheckExistence = true doesn't support windows share path but occasionally it doesn't return failure and returns broken result. For example, when we call with "\\USER-PC\Users\foo" then it converts the path to "\Users\foo". And when "\Users\foo" exists, it returns "\Users\foo". It is caused by missing error handling of searching for file "\\USER-PC". Also similar bug possibly occurs even for local file path. This commit fixes these bugs. Change-Id: Idf1dd1282510d8a6810ed239a83051bb0f8e2f87 Reviewed-on: https://gerrit.libreoffice.org/4151 Reviewed-by: Luboš Luňák <l.lunak@suse.cz> Tested-by: Luboš Luňák <l.lunak@suse.cz>
2013-06-06fdo#60924 autoinstall - gbuild/scp2: add base moduleMarcos Paulo de Souza
Change-Id: Iee1000ff245c369446a9e671a3f7c637f76f989b Reviewed-on: https://gerrit.libreoffice.org/4153 Reviewed-by: Matúš Kukan <matus.kukan@gmail.com> Tested-by: Matúš Kukan <matus.kukan@gmail.com>
2013-06-06misleading comment, beamer section, not removed helpagent sectionCaolán McNamara
Change-Id: I1e4eb58809e471e9138895e7bb2e940a0299c1e9
2013-06-06Fix breaker when compiled with DEBUG=yesAriel Constenla-Haile
(cherry picked from commit 07c6343beaea37e8e6254e0f988e19f1eccf38ce) Conflicts: odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_cpp/FlatXml.cxx Change-Id: I75278282efc80f3e9c31c413842392030beeb265
2013-06-06bnc#382137 SwFrm::CheckPageDescs: notify clients about deleted SwPageFrmMiklos Vajna
The problem is the following: SwLayAction::InternalAction() saves pPage->GetPrev() as pTmp, then SwFrm::CheckPageDescs(pPage) is called, which deletes pPage->GetPrev(). SwLayAction has no idea that pTmp got deleted, and later passes it to unlockPositionOfObjects(), which obviously assumes a valid pointer. To be on the safe side, just provide a possibility to let the caller know its pointer has been deleted. Change-Id: Ibb4d83266b1f4b6146a12dce0d4701f1056deecd
2013-06-06use autowrap rather than a manual wrap for long stringCaolán McNamara
really need to get that height for width working Change-Id: I1c8b0675c671464e49c0780b0d02fd4377cd18d1
2013-06-06Updated coreCaolán McNamara
Project: help 76322cb521790cf7a592aafa3e378449037d1b30
2013-06-06Updated coreCaolán McNamara
Project: help 5082b0ad7ca566bde06de2f976f350a97c1cd6c0
2013-06-06set mnemonic widgetsCaolán McNamara
Change-Id: Ia72029d54f2ddb111d1651809d7c63e68f010517
2013-06-06drop unused help idsCaolán McNamara
Change-Id: I7e0e9a09c6b9d36c0b9d02ab11f7bad051c01b9a
2013-06-06HIG set 6 pixel spacing between rowsCaolán McNamara
Change-Id: I6933ffd0e095fa23108b86675714f0bf7510a101
2013-06-06Updated coreCaolán McNamara
Project: help 122381b674ee2c4bb65659945a454dfb912621a2
2013-06-06Convert Compatibility tab page to .uiabdulmajeed ahmed
Change-Id: I97e5ecfb800443e41b2d9a88731cc530600a7b1c
2013-06-06valgrind: uninit variableCaolán McNamara
Change-Id: I5640291d9e221c9cffd7daec9d46a313fddfaf4e
2013-06-06add some checks against NULL derefsCaolán McNamara
Change-Id: I85fbf279991ee361ea081d92d9acc84d36677af1
2013-06-06Resolves: #i119547# support the chart legend positon of top&&left...Jian Fang Zhang
just set the Anchor to Alignment_TOP_RIGHT Found by: Shan Zhu Patch by: zhaoshzh Review by: zhangjf (cherry picked from commit 8de6941efffd22214da577ff637b2522e46c7fa5) Conflicts: oox/inc/oox/drawingml/chart/converterbase.hxx oox/source/drawingml/chart/titleconverter.cxx Change-Id: Iad1fe1af8f93e6904759c10a9c9206fd1f1aebbb
2013-06-06Convert Changes tab page to .uiabdulmajeed ahmed
Change-Id: I9d1ff420730ec9ec17e1b33f6b7180b9b89a33c4
2013-06-06Revert "configure: add evil hack to disable doxygen on a certain tinderbox"Michael Stahl
This reverts commit ea9b4a69469cbd8bdbbd972638612632adf31d66.
2013-06-06Convert sd view page to .uiFaisal M. Al-Otaibi
Change-Id: If199b877b762780e4c18b15025454f0dc7912dcd
2013-06-06Some more movement to mingw64 portFridrich Štrba
Change-Id: I6af3cb1ac205dae20feb5a35481071bc4232680b
2013-06-06stop this decadent waste of precious newlinesMichael Stahl
Change-Id: I803d7d56ba7350fd0f5b2c4efa392d55a0fd4542
2013-06-06xmlhelp: fix reading symlinked .tree filesMichael Stahl
Apparently the .tree files nowadays are symlinked, which was not the case on the libreoffice-4-0 branch... and on viewing the Contents tab it's evident we can't actually read symlinked .tree files, and crash with an STL assert because the children vector is empty. Change-Id: I5a543ef85b827e194120530a486cf19a76837d87
2013-06-06Resolves: #i120768# slide content merged Master viewer contentZhe Wang
* subversion/main/sd/source/filter/eppt/epptso.cxx []should drop the redundant presentation placeholder textbox when import to ppt Patch by: Ma Bingbing <jiazema@gmail.com> Suggested by: Wang Zhe <kingwisemmx@gmail.com> Found by: Yan Ji <yanji.yj@gmail.com> Review by: Wang Zhe <kingwisemmx@gmail.com> (cherry picked from commit 691aff9ca443dbd8ad907b32b96c031dd9ffa829) Change-Id: I1a1de0152feaacb449f2e2bad444d1bff9e7c4cb
2013-06-06Fix memory leak in Exif::processExif. Delete aExifData when done.Mark Wielaard
Change-Id: I1e63727fb8d587401c72775a14e7e3572b04fff5 Reviewed-on: https://gerrit.libreoffice.org/4171 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2013-06-06fdo#64350: fix for DOCX export of border spaceAdam Co
Change-Id: Ibd333aa4f85ed04c531187eb89b879196dca2bd8 Reviewed-on: https://gerrit.libreoffice.org/4167 Reviewed-by: Miklos Vajna <vmiklos@suse.cz> Tested-by: Miklos Vajna <vmiklos@suse.cz>
2013-06-06wwSectionManager: fix import of page bordersMiklos Vajna
Regression from 1e113cb7604e1509e7d598a9be329f1f7b6e9322. According to the spec (see 2.9.181), the first bit disables border of "all but first" pages, the second bit disables the border of first pages. Change-Id: Ie49c9b7b76d34c2a93350481965790976f49d7df