summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-05-24support old gtk3sCaolán McNamara
Change-Id: I20429aa8c06a319f9eb11079b320211f38e16827
2016-05-24too much debug spew, SAL_INFO thisCaolán McNamara
Change-Id: Ia4e69fa0ffad14564d021b86fdbb0d3d3b8c71b8
2016-05-24Updated coreAndras Timar
Project: translations cfc31b7c53b06bab97be6b2cd9503423120ea1fe Updated Slovenian translation Change-Id: I5be97aae390d20b18bdbdc93b376104e3bbe5f73
2016-05-24Implement basic TableStyle FamilyJakub Trzebiatowski
Change-Id: I3da13d26ced05e1948d483d432d6268b10c208b5 Implementing: getCount, getElementNames Reviewed-on: https://gerrit.libreoffice.org/25351 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
2016-05-24fix crash on pressing esc on Insert->Table floating windowCaolán McNamara
Change-Id: Icc06626608228a1fb4e043ccc73b6a6fb438401a
2016-05-24Revert "remove some manual ref-counting"Noel Grandin
until I have a better understanding of the UNO reference counting. This reverts commit 111de438ea3e512a541281dc0716cc728ea8d152.
2016-05-24loplugin:unusedmethods in scNoel Grandin
Change-Id: Ic378126a30be853d10fe174c451cee3c6ded404f Reviewed-on: https://gerrit.libreoffice.org/25109 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2016-05-24Revert "Simplify GfxLink using std::shared_ptr to clarify ownership"Stephan Bergmann
This reverts commit d64431ac5a7bede7661c64e0bd6d46805841e704, which caused ASan to complain about "alloc-dealloc-mismatch (operator new [] vs operator delete)" (while e.g. building Gallery_arrows), as GfxLink::mpSwpInData is a std::shared_ptr<sal_uInt8> holding a pointer to an array of sal_uInt8.
2016-05-24tdf#89329: use unique_ptr for pImpl in filedlghelperXisco Fauli
Change-Id: I50eb43fb87e971d9d65214d24b8f7f5c73ef0c96 Reviewed-on: https://gerrit.libreoffice.org/25308 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2016-05-24tdf#89329: use unique_ptr for pImpl in tabdlgXisco Fauli
Change-Id: Idf5d0d1f8b2dd68b1fe1a43e1fb1bf46837b58ec Reviewed-on: https://gerrit.libreoffice.org/25321 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2016-05-24tdf#89329: use unique_ptr for pImpl in tbxctrlXisco Fauli
Change-Id: I309435b73e3d490cc091dd875f7f600e6f2f354c Reviewed-on: https://gerrit.libreoffice.org/25322 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2016-05-24this is unnecessary and os.path.abspath seems to be confused in cygwinMarkus Mohrhard
Change-Id: I125eb2e3416c998ca16f9c9772a1e24183a222af
2016-05-24make the symbol generation also work correctly on windowsMarkus Mohrhard
Change-Id: I2fc5e8fb2535ac076f045435c828126a52ea5bbd
2016-05-24Fix license header of new fileStephan Bergmann
...introduced with 2986e54412bbaf95ef768b9ffc18c9a465678337 "Fix tdf#99506: Insert OLE object with icon failed" Change-Id: I17186b838c062cf630cf68c72e053ac88fb8c85d
2016-05-24Fix tdf#99506: Insert OLE object with icon failedGuillaume Smaha
Change-Id: I7fe5814b268e4c70977699edaa89926ca3fda92e Reviewed-on: https://gerrit.libreoffice.org/25080 Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Stephan Bergmann <sbergman@redhat.com>
2016-05-24fix previous commitsMarkus Mohrhard
Change-Id: I91e9f1d0f40dd3dd50b03a27ded2f96c71cd1ffd
2016-05-24tdf#89329: use unique_ptr for pImpl in shellXisco Fauli
Change-Id: Ie925d6c47d718ef46349c11b7450b1f2c1a93c21 Reviewed-on: https://gerrit.libreoffice.org/25318 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2016-05-24tdf#99973 - Crash when changing Locale Setting in optionsNoel Grandin
regression from commit 0f672545 "clang-tidy modernize-loop-convert in toolkit to uui", probably because the list is being modified while the loop is executing Change-Id: I18cd21001aee132e06d577c469aed5eb46a16a7f Reviewed-on: https://gerrit.libreoffice.org/25368 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2016-05-24Convert XMLTextType to scoped enumNoel Grandin
Change-Id: Iac147e57784e11d29f2b34e60dc3c624d6090c8b Reviewed-on: https://gerrit.libreoffice.org/25367 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2016-05-24Convert XmlReader::Text to scoped enumNoel Grandin
Change-Id: I4741b13fcf887a95b85886cb41f8236e128e81a2 Reviewed-on: https://gerrit.libreoffice.org/25364 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2016-05-24remove some manual ref-countingNoel Grandin
triggered when I noticed a class doing acquire() in the constructor and then release() in the destructor. found mostly by git grep -n -B5 -e '->release()' Change-Id: Ie1abeaed75c1f861df185e3bde680272dbadc97f Reviewed-on: https://gerrit.libreoffice.org/25363 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2016-05-24Convert T_DRIVERTYPE to scoped enumNoel Grandin
Change-Id: I87cfefbd35df5a8db8bac72f937a5906071b7568 Reviewed-on: https://gerrit.libreoffice.org/25356 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2016-05-24Convert OKeyType to scoped enumNoel Grandin
Change-Id: Ic604991cdc0bf3e6dc5604a4a2b33f62b92f0915 Reviewed-on: https://gerrit.libreoffice.org/25355 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2016-05-24Convert ImageType to scoped enumNoel Grandin
Change-Id: I7928fe7f1d6e96dcf42b03bd04fa9499371bbd98 Reviewed-on: https://gerrit.libreoffice.org/25354 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2016-05-24make debuggin failures a bit easierMarkus Mohrhard
Change-Id: I0b17ab513e05ee95c378399348557cfee8341fb0
2016-05-24add build system part for upload crashreport symbolsMarkus Mohrhard
Change-Id: Ib8dc0267034716740ba6d7f60cf635adc4bd1561
2016-05-24fix the crashreport symbol upload scriptMarkus Mohrhard
Change-Id: Id99ac569f6c9f839002798b6f5794b05ed228988
2016-05-24also create the symbols.zip fileMarkus Mohrhard
Change-Id: I4c96dbecd90de83fe9ac76a93ec0520ffb6932d6
2016-05-24remove old symbols directoryMarkus Mohrhard
Change-Id: Id6bd2dfd05f1c13d928dbf26414b01086740df74
2016-05-24ruler: close the polygon when drawing indent handle (gtk3, gl)Tomaž Vajngerl
Change-Id: I9d1d20f889f73c73a1b861485a956a25f743e245
2016-05-24starmath: Fix missing call of AnnotationSelection() for SmCursor::CopyTakeshi Abe
... with unit tests of Copy/Cut/Paste. Change-Id: I74dd6f235b52ef2c1388ea0d15d32af0fb30b2c8 Reviewed-on: https://gerrit.libreoffice.org/25362 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Takeshi Abe <tabe@fixedpoint.jp>
2016-05-24add DSTDEVP test caseZdeněk Crhonek
Change-Id: I263ed01d155c5939ff52487bcf0920acab4c1e5c Reviewed-on: https://gerrit.libreoffice.org/25374 Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
2016-05-24add DSTDEV test caseZdeněk Crhonek
Change-Id: Ie7a597ec7799d4e6fcba760b5cd2e20ead53601a Reviewed-on: https://gerrit.libreoffice.org/25371 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
2016-05-24return paths and not URLsMarkus Mohrhard
Change-Id: I03553a1fe98ac7ac780333b2ec247ed0cd781ffb Reviewed-on: https://gerrit.libreoffice.org/25379 Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
2016-05-24update the minidump location as soon as possibleMarkus Mohrhard
Change-Id: I7525ba7ff48b6df51ce8f7fdccf5ff512cdfec89 Reviewed-on: https://gerrit.libreoffice.org/25378 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
2016-05-24handle std::string vs std::wstring during exportMarkus Mohrhard
Change-Id: I00a32eb465b54e2a2747eebd00605212f14e5384 Reviewed-on: https://gerrit.libreoffice.org/25380 Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
2016-05-24Updated coreChristian Lohmaier
Project: dictionaries 697bbfa625583164f546b3f58a18858b56b871eb gb_Dictionary_add_thesaurus doesn't like whitespace Change-Id: Ib8bd172570967b02fc21d01ea389d0b0b29c05ea
2016-05-23opengl: combined shaders to reduce shader switchingTomaž Vajngerl
Combine most common shaders for non-texture drawing and texture drawing into two combined shaders. Inside the shader we switch between the code paths with if statements. Using if statements (or any other branching statements) is discouraged inside shaders but on the other hand we reduce program state changes if we have less shader changes - which is more important for us as we want to push more work to the GPU. Change-Id: I6701b93faa9b0f55dd0af6d983ce4c2de4539c70 Reviewed-on: https://gerrit.libreoffice.org/25357 Reviewed-by: Tomaž Vajngerl <quikee@gmail.com> Tested-by: Tomaž Vajngerl <quikee@gmail.com>
2016-05-23Updated coreChristian Lohmaier
Project: dictionaries 1f3eaa2dc7e2bc04fef06a0ed76ee18bb195e00f thesuaurs.idx is generated by gb_Dictionary_add_thesaurus as there is only one thesuarus, no need for the thesauri variant that does nothing else but call the thesuarus one.. Change-Id: Ia366e13e9cee0f15d282377124404a4cf0c3039b
2016-05-23fix the crash report location also in another placeMarkus Mohrhard
Change-Id: I3ab133fbdcdcc8a17ec9159d1c88b19f35b6a7b0
2016-05-23add a build system target to generate the symbol filesMarkus Mohrhard
Change-Id: Ib690eb05deaec5d8ce91f6b76daadf427d7ad964
2016-05-23also handle .bin files in the windows symbol codeMarkus Mohrhard
Change-Id: I85b0490c515987d56e04d0e5b42111c52bbabbc3
2016-05-23Addition of new controls and their rearrangement in hatch tabRishabh Kumar
1. Removal of rectangle hatch angle dial widget 2. Addition of slider widget for changing angle in hatch tab. 3. Move hatch background color control from area tab to hatch tab. 4. Rearrangement of controls 5. Removal of hatch controls from Area tab Change-Id: I596098b328fc183d2fdd5259e90013dbf74d9ad7 Reviewed-on: https://gerrit.libreoffice.org/25147 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
2016-05-23like menus do, restore focus to prev control when floatingwindow popdownsCaolán McNamara
in the FloatWinPopupFlags::GrabFocus case Change-Id: Ibebf23c83133f74f00e5dbb2540f108a383462cc
2016-05-23Updated coreChristian Lohmaier
Project: help f2361eb91e2e47b0ecbc02bedb8763c08007f0c4 remove spurious space before </paragraph> Change-Id: Icf4d5ba12ab65bbedaf75bdee4ffc36131ea731e
2016-05-23Updated coreChristian Lohmaier
Project: help caeff7f2fb309f76e5a74cab62016bf2d185840a remove spurious space before </variable> Change-Id: I06d328b73455d5b6ea04d7c04c9b09fcb7bad366
2016-05-23Updated coreChristian Lohmaier
Project: help 30ecec125c4383354379201fc1191fccfb082059 remove obsolete attributes from changed strings as it doesn't matter if the context changes, since they'll need to be modified by translators anyway Change-Id: I120289e3d944030ba1933c888795137d7ef71324
2016-05-23Google 2FA: better info for userSzymon Kłos
Google sends SMS with code in format "G-XXXXXX". User should enter only numbers wihout "G-". + added "G-" label which is shown in the Google authentication code request before PIN field Change-Id: I8eaecbbe7b8803269444f947e97ee67c33db61b2
2016-05-23-Werror,-Wunused-private-fieldStephan Bergmann
Change-Id: Ia30ad12d63423252c527de096cd1ae0ba3fd6aa5
2016-05-23Resolves: tdf#86282 do not use file name as sheet name for linked documentsEike Rathke
... and external references. Change-Id: I6e23eeff39086091f13914a3f964aec1016a7de4