[Libreoffice-commits] core.git: Changes to 'feature/skia'

Tomaž Vajngerl (via logerrit) logerrit at kemper.freedesktop.org
Mon Jun 24 04:04:23 UTC 2019


New branch 'feature/skia' available with the following commits:
commit 4526b55a9960ed6c23278850b84e65838092e5cb
Author: Tomaž Vajngerl <tomaz.vajngerl at collabora.co.uk>
Date:   Mon Jun 24 11:39:28 2019 +0900

    Build skia library in LibreOffice
    
    Change-Id: Iaa8156270dd764814a5ddbeb2fd617acae3ae561

commit f6664e1a485f459d010c344af100f9d337941a7c
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Sun Jun 23 16:09:24 2019 +0100

    Resolves: tdf#125168 label mnemonic appearing in database url
    
    Change-Id: I39531ae2a656c16c7355d73b76cb918d3535f7b0
    Reviewed-on: https://gerrit.libreoffice.org/74602
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

commit 27af6368d3157596f084f88c1efdd3eeca243a37
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
Date:   Tue May 14 21:24:05 2019 +0000

    Fix typo
    
    Change-Id: I1586aa67c51a54e5a244126763be0a549a2fe7a6
    Reviewed-on: https://gerrit.libreoffice.org/73135
    Tested-by: Jenkins
    Reviewed-by: Adolfo Jayme Barrientos <fitojb at ubuntu.com>

commit e2cd0d9ba59bbfaf37523e90f88454f65adeb5fb
Author: Sumit Chauhan <sumitcn25 at gmail.com>
Date:   Thu Jun 20 17:45:34 2019 +0530

    Seprator is positioned correctly in view->userInterface
    
    It is used differentiate between normal interfaces and
    notebookbar interfaces in view -> user interface.
    
    Change-Id: I691e7a767c1984dfa4bd7e064adf2f24e1381991
    Reviewed-on: https://gerrit.libreoffice.org/74446
    Tested-by: Jenkins
    Reviewed-by: andreas_kainz <kainz.a at gmail.com>

commit 958e304490a23ef4964270ffa7a2ed0e76e39a0c
Author: Jens Carl <j.carl43 at gmx.de>
Date:   Sat Jun 22 14:15:43 2019 -0700

    Use in-class member initializers
    
    Don't use a default ctor that only initializes data members, but rather
    in-class member initializers. Follow CppCoreGuidelines rule C.45
    (see https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rc-default).
    
    Change-Id: I52d26fa0393f7e383beb95456dd016aa0e84b777
    Reviewed-on: https://gerrit.libreoffice.org/74589
    Tested-by: Jenkins
    Reviewed-by: Jens Carl <j.carl43 at gmx.de>

commit 8e7f87e7561197f03542a80aaa612a2b6f964d40
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Sat Jun 22 21:44:18 2019 +0200

    Also treat negative DIBInfoHeader::nX/YPelsPerMeter as an error
    
    According to
    <https://docs.microsoft.com/en-us/previous-versions/dd183376(v=vs.85)>
    "BITMAPINFOHEADER structure", all of the biWidth, biHeight, biXPelsPerMeter, and
    biYPelsPerMeter members are of signed type LONG, but only for biHeight negative
    values are documented as meaningful.  As this code already rejecte negative
    values for biHeight, do so also for biXPelsPerMeter and biYPelsPerMeter.
    
    Otherwise, `--convert-to pdf caolan/id:000164,src:000000,op:havoc,rep:8.bmp`
    (from the crashtestdata files) would fail with
    
    > vcl/source/filter/jpeg/jpegc.cxx:404:23: runtime error: -12.549 is outside the range of representable values of type 'unsigned short'
    >  #0 in WriteJPEG(JPEGWriter*, void*, long, long, basegfx::B2DVector const&, bool, long, long, com::sun::star::uno::Reference<com::sun::star::task::XStatusIndicator> const&) at vcl/source/filter/jpeg/jpegc.cxx:404:23
    >  #1 in JPEGWriter::Write(Graphic const&) at vcl/source/filter/jpeg/JpegWriter.cxx:240:16
    >  #2 in ExportJPEG(SvStream&, Graphic const&, com::sun::star::uno::Sequence<com::sun::star::beans::PropertyValue> const*, bool*) at vcl/source/filter/jpeg/jpeg.cxx:69:32
    >  #3 in GraphicFilter::ExportGraphic(Graphic const&, rtl::OUString const&, SvStream&, unsigned short, com::sun::star::uno::Sequence<com::sun::star::beans::PropertyValue> const*) at vcl/source/filter/graphicfilter.cxx:2042:22
    [...]
    
    because the (maliciously crafted?) bmp file has a negative nYPelsPerMeter that
    translates into a negative rPPI.getY().
    
    Change-Id: Id6dddd86d7111ae1a644337288e9f1023cb47670
    Reviewed-on: https://gerrit.libreoffice.org/74582
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <sbergman at redhat.com>

commit 92cf12ea025dfda642809d297a015131c1925052
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Sat Jun 22 20:34:06 2019 +0100

    tdf#125803 deactivate the menu regardless of menu item type
    
    spacebar will toggle radios and checkbuttons without automatically
    closing the menu. To handle this properly I imagine we need to set groups for the
    radiobuttons so the others visually untoggle when the active one is togged and
    we would further need to teach vcl that the state can change more than once.
    
    so simpler to just dropdown the menus no matter what type was activated,
    which won't happen in the unity case, but that's presumably mostly gone
    by now(?)
    
    Change-Id: I2ba841dd192c1461ef26d8395ba572843f4c5c4f
    Reviewed-on: https://gerrit.libreoffice.org/74580
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

commit 4f113609feae412a79edbdffcc2f34600c79ee63
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
Date:   Fri Jun 14 22:42:45 2019 +0000

    Fix typo
    
    Change-Id: Ie4a0e69b78f671f9990f9c750e5ecb63447efe2b
    Reviewed-on: https://gerrit.libreoffice.org/74599
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
    Tested-by: Julien Nabet <serval2412 at yahoo.fr>

commit a8109450300ab74d8aadb24204e33c16d46ff637
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
Date:   Fri Jun 14 22:42:44 2019 +0000

    Fix typo
    
    Change-Id: Ib405a8287833f596aa90ae6496b748bf8d45f3c3
    Reviewed-on: https://gerrit.libreoffice.org/74601
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
    Tested-by: Julien Nabet <serval2412 at yahoo.fr>

commit 649b0d30ea100c8f69e849671e8ce3e42bc9e850
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Sat Jun 22 21:00:20 2019 +0100

    Resolves: tdf#126039 erase old content before drawing new content
    
    Change-Id: I0006467f5c172b6a0cb8b9bc4c9a0181fd57a8ac
    Reviewed-on: https://gerrit.libreoffice.org/74583
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

commit 7a8f925d67f38fb14bf8df512f62828299ac37ca
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
Date:   Fri Jun 14 22:42:47 2019 +0000

    Fix typo
    
    Change-Id: I30d3a4e7c30dcd1717663f152221f81769b08459
    Reviewed-on: https://gerrit.libreoffice.org/74597
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
    Tested-by: Julien Nabet <serval2412 at yahoo.fr>

commit a5082e554ba6448120e20ec5167edc039026d873
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
Date:   Tue Jun 18 23:35:53 2019 +0200

    Fix typo
    
    Change-Id: I5cfe3c3157b60ebd71989d1ca105283392c03fc0
    Reviewed-on: https://gerrit.libreoffice.org/74313
    Tested-by: Jenkins
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>

commit 4c492a79adbc0d35122bf50c5216a0e6a6bf66c0
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
Date:   Fri Jun 14 22:43:12 2019 +0000

    Fix typo
    
    Change-Id: Ib555f767f4d0c6f9b958b3aaf9a496bf8c31de5e
    Reviewed-on: https://gerrit.libreoffice.org/74319
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
    Tested-by: Julien Nabet <serval2412 at yahoo.fr>

commit 547d68a175e316e4d20a4f19c148579370fa0a50
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
Date:   Mon Jun 10 21:31:37 2019 +0200

    Fix typos
    
    Change-Id: Id805595850125de5d791f016649b660a7fedba8a
    Reviewed-on: https://gerrit.libreoffice.org/73779
    Tested-by: Jenkins
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>

commit 794102acd8b325c565d34d3e3f73f6c83a80cf7c
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
Date:   Tue May 14 21:23:30 2019 +0000

    Fix typos
    
    Change-Id: If81c6224abbd0028bcc446159cf12436e89325d8
    Reviewed-on: https://gerrit.libreoffice.org/73421
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
    Tested-by: Julien Nabet <serval2412 at yahoo.fr>

commit ec72bb42e54e5a1ca0f5c54bb6dc656936a16bcf
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
Date:   Tue May 14 21:23:56 2019 +0000

    Fix typo
    
    Change-Id: If1f6d73088e87db6e91916ba338725054f63b5ac
    Reviewed-on: https://gerrit.libreoffice.org/73231
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
    Tested-by: Julien Nabet <serval2412 at yahoo.fr>

commit 6a6791af2ab9c59f3a8ed2d71c0cbd0524b2ea32
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
Date:   Wed May 29 11:07:58 2019 +0000

    Fix typo
    
    Change-Id: I528581c5a17e804f7ba39a069e7bb8ac8d005adc
    Reviewed-on: https://gerrit.libreoffice.org/73223
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
    Tested-by: Julien Nabet <serval2412 at yahoo.fr>

commit 014e270607f6af5e749c0013c2a84f77a97f2c17
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
Date:   Sat Jun 22 08:42:07 2019 +0200

    Fix typo
    
    Change-Id: I3a4b8aad30f4d8bcfda472ddfd151410db21a5b1
    Reviewed-on: https://gerrit.libreoffice.org/74551
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
    Tested-by: Julien Nabet <serval2412 at yahoo.fr>

commit d6e325eb4e944a687b142b4ca7a035d38c123658
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
Date:   Fri Jun 14 22:42:51 2019 +0000

    Fix typo
    
    Change-Id: I580bfda7af2f29484817d8e88ba74cb3c43a98fd
    Reviewed-on: https://gerrit.libreoffice.org/74560
    Tested-by: Jenkins
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>

commit 314d15e8ec454795d609892bf743c198a4638f2c
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
Date:   Sun Jun 23 12:04:12 2019 +0200

    Fix typo
    
    Change-Id: I357c004e724ebe580a121bf7ecdc63da9c02343f
    Reviewed-on: https://gerrit.libreoffice.org/74593
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
    Tested-by: Julien Nabet <serval2412 at yahoo.fr>

commit b9c00b3c5d90b80248577403ce56c8668a51b315
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
Date:   Fri Jun 14 22:42:49 2019 +0000

    Fix typo
    
    Change-Id: I7e6be2abe50487df7da5486ad9b98aabc67b1caa
    Reviewed-on: https://gerrit.libreoffice.org/74592
    Tested-by: Jenkins
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>

commit 02efb7a6fdfe62bea198d3851e38696131363c2d
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
Date:   Fri Jun 14 22:42:48 2019 +0000

    Fix typo
    
    Change-Id: I126a490e40d5954f290200edaa377427f59f244a
    Reviewed-on: https://gerrit.libreoffice.org/74596
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
    Tested-by: Julien Nabet <serval2412 at yahoo.fr>

commit 869d1c404c7bcab6bce59a9abea45ca583f77468
Author: Adrien Ollier <adr.ollier at hotmail.fr>
Date:   Tue May 14 18:47:07 2019 +0200

    editeng/XParaPortionList: OutputDevice's MapMode
    
    Change-Id: I77098fd15e131711e4f2a7ef4f21bd1dd8d68768
    Signed-off-by: Adrien Ollier <adr.ollier at hotmail.fr>
    Reviewed-on: https://gerrit.libreoffice.org/72307
    Tested-by: Jenkins
    Reviewed-by: Tomaž Vajngerl <quikee at gmail.com>

commit 6d4039c130896c57363bb60982c0b5601c4f0c3e
Author: Arkadiy Illarionov <qarkai at gmail.com>
Date:   Fri Jun 21 23:21:17 2019 +0300

    tdf#39593 Remove dbaccess::OContentHelper::getImplementation
    
    Replace with comphelper::getUnoTunnelImplementation.
    
    Change-Id: I533bfcd3959037a2621eb3fd42bf7172b5396c5f
    Reviewed-on: https://gerrit.libreoffice.org/74539
    Tested-by: Jenkins
    Reviewed-by: Arkadiy Illarionov <qarkai at gmail.com>



More information about the Libreoffice-commits mailing list