1. 09 Kas, 2018 40 kayıt (commit)
    • Tomaž Vajngerl's avatar
      custom widgets: setup style setting in the widget library · b838e7e8
      Tomaž Vajngerl yazdı
      Some theme colors are set using the style settings, which are
      implemented by each backend to correspond to the system theme.
      For custom widgets these need to also be set by the library
      itself. This commit adds the ground work and sets some of the
      colors for windows backgrounds.
      
      Change-Id: Ia65b1605b2b7bef7f01ff1feff2e7470479e626a
      b838e7e8
    • Tomaž Vajngerl's avatar
      custom widgets: draw fixed line widget · 7d879658
      Tomaž Vajngerl yazdı
      Change-Id: Icb8cfbe09caf5cbfcf1d3f461c297c052056250d
      7d879658
    • Tomaž Vajngerl's avatar
      custom widgets: differentiate stock and non-stock buttons · 61dc61fd
      Tomaž Vajngerl yazdı
      Change-Id: I05f01058d7886dacec3b00dcf31313aea3939164
      61dc61fd
    • Tomaž Vajngerl's avatar
      vcl: mark stock buttons and transfer this to NWF on drawing · 137bb940
      Tomaž Vajngerl yazdı
      Stock buttons like OK/Cancel/Help need sometimes to be drawn
      differently than just another button. For this we need to mark
      such push buttons as "stock" when building them from a glade file
      and transfer this information down to the NWF backend when drawing
      the widget.
      
      Change-Id: I131657f026a731208db47f4c8220622c8aabb464
      137bb940
    • Tomaž Vajngerl's avatar
      custom widgets: editbox - draw focus rectangle · dc75cdaf
      Tomaž Vajngerl yazdı
      Change-Id: I5d038d165d5ff08a07d24906f6a7cc2d6176f1ac
      dc75cdaf
    • Tomaž Vajngerl's avatar
      custom widgets: return early when the widget lib is not available · ef4e531b
      Tomaž Vajngerl yazdı
      Change-Id: I1d740b4a3840f73015f34bd2143663a919db2956
      ef4e531b
    • Tomaž Vajngerl's avatar
      custom widgets: enable anti-aliasing when drawing widgets · eef27684
      Tomaž Vajngerl yazdı
      Change-Id: I050d8534cacdee63109158dbc150d9d13b43fe5e
      eef27684
    • Tomaž Vajngerl's avatar
      custom widgets: get the region from the lib. + custom tab width · 8d1b99f2
      Tomaž Vajngerl yazdı
      This implements getting the region rectangle from the widget
      library so it is possible to redefine the size of the widgets if
      needed.
      
      Additionally increase a tab width which are too small by default.
      
      Change-Id: If662c44e02631715efd137ecbfc4a5770fa9f6ab
      8d1b99f2
    • Tomaž Vajngerl's avatar
      custom widgets: add Toolbar widget · cb09d6ee
      Tomaž Vajngerl yazdı
      Change-Id: Ia4efe711c07213f2edf472602c5b2acc81876906
      cb09d6ee
    • Tomaž Vajngerl's avatar
      custom widgets: add List widget - ListNode, ListWidget · 996a9f06
      Tomaž Vajngerl yazdı
      also added ListNet as noop
      
      Change-Id: I033f908a8fc9ce9ec4b3d202e1299f7c0a9cad6c
      996a9f06
    • Tomaž Vajngerl's avatar
      custom widgets: add Progress widget · 8e3c4d16
      Tomaž Vajngerl yazdı
      Change-Id: I573a6c28f5ddb538ca3b0abf15197695fc113802
      8e3c4d16
    • Tomaž Vajngerl's avatar
      vcl: simplify ControlDrawParameters construction, add nValue · 84b836c5
      Tomaž Vajngerl yazdı
      Don't require eButtonValue as a constructor parameter as it mostly
      isn't necessary and required.
      
      In addition add nValue instance variable.
      
      Change-Id: I927714f715fce1549d87cec633330a0dc313f569
      84b836c5
    • Tomaž Vajngerl's avatar
      custom widgets: add Slider widget · 11e5d517
      Tomaž Vajngerl yazdı
      Change-Id: Ie2192edfcfc49a1953059c5947b8ea7bb03a3c7d
      11e5d517
    • Tomaž Vajngerl's avatar
      vcl: make slider ask if native drawing is supported · 351cc2e3
      Tomaž Vajngerl yazdı
      Slider drawing didn't we ask if native drawing is supported using
      IsNativeControlSupported method.
      
      Change-Id: I0672114337516ff763fd710d949ab6a982db2992
      351cc2e3
    • Tomaž Vajngerl's avatar
      custom widgets: add Tab widgets · 67a300fe
      Tomaž Vajngerl yazdı
      Change-Id: If9acc47b9a7751858d3394741e3984b3c2a49936
      67a300fe
    • Tomaž Vajngerl's avatar
      custom widgets: draw ListBox widget · 1bc08bd0
      Tomaž Vajngerl yazdı
      Change-Id: I1a3b709fdc4fb21fc4ad22542ff669c98b13487d
      1bc08bd0
    • Tomaž Vajngerl's avatar
      custom widgets: first round of basic widgets with cairo · 37dec074
      Tomaž Vajngerl yazdı
      - Radiobutton
      - Checkbox
      - Combobox
      - Editbox
      - Spinbox
      - Scrollbar
      
      Change-Id: I46bd2753a7c1806f4cd4583455e76c77494225b4
      37dec074
    • Tomaž Vajngerl's avatar
      Support drawing custom widgets in headless backend · 527397ab
      Tomaž Vajngerl yazdı
      ..and fallback the headless dawing also in gtk3 where needed
      
      Change-Id: Ic5da8fa7a04089342db8e2f334ced69691a15217
      527397ab
    • Tomaž Vajngerl's avatar
      lokit: Draw dialogs without using a MetaFile · 63f320f6
      Tomaž Vajngerl yazdı
      A native widgets aren't part of a VCL metafile so they are ignored
      when the metafile is replayed. When drawing a dialog to a custom
      device, the first draw goes to the metafile, which is then replayed
      to the final device, but no native widgets get drawn. This commit
      changes this behavior for LOKit where it draws without using the
      intermediate VCL metafile.
      
      Change-Id: I823db30c8bceb83830c6c993d4238b39e1331c09
      63f320f6
    • Tomaž Vajngerl's avatar
      custom widgets: Custom Widget Themes · 8fcfa385
      Tomaž Vajngerl yazdı
      Change-Id: I7ec57d18fe99f906aeb6dbb40d0d30c2ac8b51c4
      8fcfa385
    • Noel Grandin's avatar
      SvStream::m_isConsistent is always true · 4e6b448b
      Noel Grandin yazdı
      ever since
          commit a3b0ee88
          Date:   Sun Jul 10 22:17:35 2011 +0100
          strip out unused methods
      
      found by loplugin:singlevalfields
      
      Change-Id: I4feab1195f78549a48f4b1a9017bc5101474228f
      Reviewed-on: https://gerrit.libreoffice.org/63173
      Tested-by: Jenkins
      Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
      4e6b448b
    • Stephan Bergmann's avatar
      Make XclRange::GetCol/RowCount more robust · d7556350
      Stephan Bergmann yazdı
      Under (new-in-Clang) -fsanitize=implicit-signed-integer-truncation,
      CppunitTest_sc_filters_test failed with
      
      > Testing file:///.../sc/qa/unit/data/xls/pass/crash-7.xls:
      > warn:sc:27699:27699:sc/source/filter/excel/xlroot.cxx:158: XclRootData::XclRootData - cannot get output device info: N3com3sun4star3uno9ExceptionE msg: invalid attempt to assign an empty interface of type com.sun.star.frame.XFrame!
      > warn:legacy.osl:27699:27699:sc/source/filter/excel/xilink.cxx:631: XclImpSupbook::XclImpSupbook - unknown special SUPBOOK type
      > warn:sc:27699:27699:sc/source/filter/excel/xilink.cxx:703: XclImpSupbook::GetExternName - index must be >0
      > warn:legacy.osl:27699:27699:sc/source/filter/excel/xistream.cxx:802: XclImpStream::Ignore - record overread
      > sc/source/filter/inc/xladdress.hxx:72:47: runtime error: implicit conversion from type 'int' of value -511 (32-bit, signed) to type 'sal_uInt16' (aka 'unsigned short') changed the value to 65025 (16-bit, unsigned)
      >  #0 in XclRange::GetColCount() const at sc/source/filter/inc/xladdress.hxx:72:47 (instdir/program/libscfiltlo.so +0x2510655)
      >  #1 in ImportExcel::ReadDimensions() at sc/source/filter/excel/impop.cxx:255:27 (instdir/program/libscfiltlo.so +0x24e52c4)
      >  #2 in ImportExcel8::Read() at sc/source/filter/excel/read.cxx:1110:49 (instdir/program/libscfiltlo.so +0x2589a90)
      >  #3 in ScFormatFilterPluginImpl::ScImportExcel(SfxMedium&, ScDocument*, EXCIMPFORMAT) at sc/source/filter/excel/excel.cxx:145:35 (instdir/program/libscfiltlo.so +0x230df62)
      >  #4 in ScDocShell::ConvertFrom(SfxMedium&) at sc/source/ui/docshell/docsh.cxx:1265:52 (instdir/program/libsclo.so +0xcc8db50)
      >  #5 in SfxObjectShell::DoLoad(SfxMedium*) at sfx2/source/doc/objstor.cxx:787:23 (instdir/program/libsfxlo.so +0x389f0df)
      >  #6 in ScBootstrapFixture::load(bool, rtl::OUString const&, rtl::OUString const&, rtl::OUString const&, rtl::OUString const&, SfxFilterFlags, SotClipboardFormatId, unsigned long, rtl::OUString const*) at sc/qa/unit/helper/qahelper.cxx:582:21 (workdir/LinkTarget/CppunitTest/../Library/libscqahelper.so +0x869b5)
      >  #7 in ScBootstrapFixture::load(rtl::OUString const&, rtl::OUString const&, rtl::OUString const&, rtl::OUString const&, SfxFilterFlags, SotClipboardFormatId, unsigned long, rtl::OUString const*) at sc/qa/unit/helper/qahelper.cxx:597:12 (workdir/LinkTarget/CppunitTest/../Library/libscqahelper.so +0x86fa6)
      >  #8 in ScFiltersTest::load(rtl::OUString const&, rtl::OUString const&, rtl::OUString const&, SfxFilterFlags, SotClipboardFormatId, unsigned int) at sc/qa/unit/filters-test.cxx:125:51 (workdir/LinkTarget/CppunitTest/libtest_sc_filters_test.so +0x4623a)
      >  #9 in test::FiltersTest::recursiveScan(test::filterStatus, rtl::OUString const&, rtl::OUString const&, rtl::OUString const&, SfxFilterFlags, SotClipboardFormatId, unsigned int, bool) at unotest/source/cpp/filters-test.cxx:130:20 (workdir/LinkTarget/CppunitTest/../Library/libunotest.so +0x7526d)
      >  #10 in test::FiltersTest::testDir(rtl::OUString const&, rtl::OUString const&, rtl::OUString const&, SfxFilterFlags, SotClipboardFormatId, unsigned int, bool) at unotest/source/cpp/filters-test.cxx:155:5 (workdir/LinkTarget/CppunitTest/../Library/libunotest.so +0x79127)
      >  #11 in ScFiltersTest::testCVEs() at sc/qa/unit/filters-test.cxx:146:5 (workdir/LinkTarget/CppunitTest/libtest_sc_filters_test.so +0x4729d)
      [...]
      
      so it smells like the given XclRange (with maFirst.mnCol=512, maFirst.mnRow=0,
      maLast.mnCol=0, maLast.mnRow=0) already is the result of some previous lenient
      parsing of invalid input.
      
      Change-Id: Ib7915eac5526fc295e7fbbc1c001549b991ddbf7
      Reviewed-on: https://gerrit.libreoffice.org/63200
      Tested-by: Jenkins
      Reviewed-by: 's avatarStephan Bergmann <sbergman@redhat.com>
      d7556350
    • Caolán McNamara's avatar
      Resolves: tdf#121290 Crash, if press F4 for a selected callout · aa641600
      Caolán McNamara yazdı
      Change-Id: Idf73b21ae2f27f4966705c8faf9fd38abc502ae4
      Reviewed-on: https://gerrit.libreoffice.org/63178
      Tested-by: Jenkins
      Reviewed-by: 's avatarCaolán McNamara <caolanm@redhat.com>
      Tested-by: 's avatarCaolán McNamara <caolanm@redhat.com>
      aa641600
    • Caolán McNamara's avatar
      tdf#121275 fallback to gtk3 under wayland with unknown desktop · 29352616
      Caolán McNamara yazdı
      Change-Id: Ie63da823faf9067e61ca4870f464d49425bbc907
      Reviewed-on: https://gerrit.libreoffice.org/63123
      Tested-by: Jenkins
      Reviewed-by: 's avatarCaolán McNamara <caolanm@redhat.com>
      Tested-by: 's avatarCaolán McNamara <caolanm@redhat.com>
      29352616
    • Stephan Bergmann's avatar
      Clean up excess slashes in paths · 9a103b64
      Stephan Bergmann yazdı
      Change-Id: I8e16746fc8d89adc8882303f67760341c1968aed
      Reviewed-on: https://gerrit.libreoffice.org/63190
      Tested-by: Jenkins
      Reviewed-by: 's avatarStephan Bergmann <sbergman@redhat.com>
      9a103b64
    • Michael Weghorn's avatar
      tdf#121276 gtk3_kde5: Don't prevent creating new files · a6318cb4
      Michael Weghorn yazdı
      This takes over for gtk3_kde5 what was done for kde5 in commit
      c0f45c89.
      
      Change-Id: Ieca71498bd0cc00ca07b83f6e1178d983169d5be
      Reviewed-on: https://gerrit.libreoffice.org/63172
      Tested-by: Jenkins
      Reviewed-by: 's avatarMichael Weghorn <m.weghorn@posteo.de>
      a6318cb4
    • Stephan Bergmann's avatar
      Fix creation/removal of GPG socketdir · f0305ec0
      Stephan Bergmann yazdı
      <https://gerrit.libreoffice.org/#/c/50978/> "gpg4libre: fix failing gpg test due
      to over-long filenames" had introduced the gb_CppunitTest_run_gpgconf target in
      xmlsecurity/CppunitTest_xmlsecurity_signing.mk, calling `gpgconf
      --craete-socketdir`.  A 2018-03-18 comment there notes that "Stephan's last
      comment: (and `gpgconf --remove-sockedir` be called after the test?) is not
      addressed yet, will do in follow-up commit".
      
      Follow-up d7ecf4a4 "properly check for gpgconf
      (and --create-socketdir) working" makes gb_CppunitTest_run_gpgconf conditional.
      However, in configure.ac,
      
        HAVE_GPGCONF_SOCKETDIR=TRUE
      
      is missing, so even after follow-up 7a95ee8d
      "actually add HAVE_GPGCONF_SOCKETDIR to config_host.mk.in...", config_host.mk
      will always contain
      
        export HAVE_GPGCONF_SOCKETDIR=
      
      so gb_CppunitTest_run_gpgconf will never be executed (and `pgconf
      --crate-socketdir` will never called).
      
      But even if it were executed, it would not create the socket dir that the test
      code in xmlsecurity/qa/unit/signing/signing.cxx is actually using, as
      gb_CppunitTest_run_gpgconf sets
      
        GNUPGHOME=.../workdir/CppunitTest/xmlsecurity_signing.test.user
      
      while xmlsecurity/qa/unit/signing/signing.cxx's SigningTest::setUp sets
      
        GNUPGHOME=.../workdir//CppunitTest/xmlsecurity_signing.test.user/
      
      and the GPG software is apparently picky about extra slashes when computing the
      socket dir name from the GNUPGHOME env var.
      
      (That `gpgconf --create-socketdir` was never executed with the current setup
      shows that calling it explicitly is probably not really needed, as the GPG
      software apparently creates it automatically on demand.)
      
      However, what is still missing is to remove the socket dir again (see the
      comment quoted above), and, probably more importantly, to exit any gpg-agent
      daemon operating on that socket dir that has (indirectly) been started by the
      tests in xmlsecurity/qa/unit/signing/signing.cxx.  At least with Fedora 29
      gpgconf from gnupg2-2.2.9-1.fc29.x86_64, that daemon is successfully terminated
      by calling `gpgconf --remove-socket`.
      
      So move the call to `gpgconf --create-socketdir` from the makefile to the test
      setup code (which makes it easier to guarantee that a single GNUPGHOME value,
      and thus a single socket dir, is used), and add a corresponding `gpgconf
      --remove-socketdir` call to the test shutdown code.  (As argued above, the
      `gpgconf --create-socketdir` call shouldn't be stricktly necessary, but it looks
      cleaner to do it explicitly anyway.)
      
      Change-Id: I2ec8f08943ed63ec27f8507461588ee7cdadf372
      Reviewed-on: https://gerrit.libreoffice.org/63181Reviewed-by: 's avatarThorsten Behrens <Thorsten.Behrens@CIB.de>
      Tested-by: Jenkins
      Reviewed-by: 's avatarStephan Bergmann <sbergman@redhat.com>
      f0305ec0
    • Julien Nabet's avatar
      Revert "Fix some layout values" · eadba44a
      Julien Nabet yazdı
      Nothing proves this is ok since no feedback.
      Moreover, since it's only of the assumption that setWidth and setHeight
      should have value >= 0 or -1, let's revert this one.
      
      This reverts commit d467214a.
      
      Change-Id: Ia030706d150afaebaedc0ec201814cca80db248a
      Reviewed-on: https://gerrit.libreoffice.org/63171Reviewed-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
      Tested-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
      eadba44a
    • Stephan Bergmann's avatar
      css::security::DocumentSignatureInformation::SignatureTime is 32 bit · 015e4266
      Stephan Bergmann yazdı
      ...and has always represented the time of day in 100th of seconds.  When
      tools::Time had been changed to 64 bit nanoseconds in
      9830fd36 "date/time IDL datatypes incompatible
      change", conversion between the two has apparently been forgotten, so that
      CppunitTest_desktop_lib under (new-in-Clang)
      -fsanitize=implicit-signed-integer-truncation failed with
      
      > xmlsecurity/source/component/documentdigitalsignatures.cxx:536:38: runtime error: implicit conversion from type 'sal_Int64' (aka 'long') of value 192536379741069 (64-bit, signed) to type '::sal_Int32' (aka 'int') changed the value to 1585795981 (32-bit, signed)
      >  #0 in DocumentDigitalSignatures::ImplVerifySignatures(com::sun::star::uno::Reference<com::sun::star::embed::XStorage> const&, com::sun::star::uno::Reference<com::sun::star::io::XInputStream> const&, DocumentSignatureMode) at xmlsecurity/source/component/documentdigitalsignatures.cxx:536:38 (instdir/program/libxmlsecurity.so +0x488319)
      >  #1 in DocumentDigitalSignatures::verifyDocumentContentSignatures(com::sun::star::uno::Reference<com::sun::star::embed::XStorage> const&, com::sun::star::uno::Reference<com::sun::star::io::XInputStream> const&) at xmlsecurity/source/component/documentdigitalsignatures.cxx:296:12 (instdir/program/libxmlsecurity.so +0x484ea6)
      >  #2 in non-virtual thunk to DocumentDigitalSignatures::verifyDocumentContentSignatures(com::sun::star::uno::Reference<com::sun::star::embed::XStorage> const&, com::sun::star::uno::Reference<com::sun::star::io::XInputStream> const&) at xmlsecurity/source/component/documentdigitalsignatures.cxx (instdir/program/libxmlsecurity.so +0x4890fa)
      >  #3 in SfxObjectShell::ImplAnalyzeSignature(bool, com::sun::star::uno::Reference<com::sun::star::security::XDocumentDigitalSignatures> const&) at sfx2/source/doc/objserv.cxx:1368:47 (instdir/program/libsfxlo.so +0x3866a04)
      >  #4 in SfxObjectShell::ImplGetSignatureState(bool) at sfx2/source/doc/objserv.cxx:1397:74 (instdir/program/libsfxlo.so +0x3869118)
      >  #5 in SfxObjectShell::GetDocumentSignatureState() at sfx2/source/doc/objserv.cxx:1575:12 (instdir/program/libsfxlo.so +0x3863e57)
      >  #6 in SfxObjectShell::CheckForBrokenDocSignatures_Impl() at sfx2/source/doc/objmisc.cxx:974:38 (instdir/program/libsfxlo.so +0x3812535)
      >  #7 in SfxObjectShell::CheckSecurityOnLoading_Impl() at sfx2/source/doc/objmisc.cxx:924:5 (instdir/program/libsfxlo.so +0x38120bc)
      >  #8 in SfxObjectShell::FinishedLoading(SfxLoadedFlags) at sfx2/source/doc/objmisc.cxx:1072:9 (instdir/program/libsfxlo.so +0x3818a89)
      >  #9 in SwDocShell::LoadingFinished() at sw/source/uibase/app/docsh.cxx:1200:5 (instdir/program/libswlo.so +0xcfd4f08)
      >  #10 in SwDocShell::Load(SfxMedium&) at sw/source/uibase/app/docshini.cxx:582:13 (instdir/program/libswlo.so +0xd091a39)
      >  #11 in SfxObjectShell::LoadOwnFormat(SfxMedium&) at sfx2/source/doc/objstor.cxx:3053:20 (instdir/program/libsfxlo.so +0x3895e54)
      >  #12 in SfxObjectShell::DoLoad(SfxMedium*) at sfx2/source/doc/objstor.cxx:725:40 (instdir/program/libsfxlo.so +0x389bdd5)
      >  #13 in SfxBaseModel::load(com::sun::star::uno::Sequence<com::sun::star::beans::PropertyValue> const&) at sfx2/source/doc/sfxbasemodel.cxx:1795:36 (instdir/program/libsfxlo.so +0x3a40e1e)
      >  #14 in (anonymous namespace)::SfxFrameLoader_Impl::load(com::sun::star::uno::Sequence<com::sun::star::beans::PropertyValue> const&, com::sun::star::uno::Reference<com::sun::star::frame::XFrame> const&) at sfx2/source/view/frmload.cxx:688:28 (instdir/program/libsfxlo.so +0x40c30c0)
      >  #15 in framework::LoadEnv::impl_loadContent() at framework/source/loadenv/loadenv.cxx:1149:37 (instdir/program/libfwklo.so +0x1520131)
      >  #16 in framework::LoadEnv::startLoading() at framework/source/loadenv/loadenv.cxx:383:20 (instdir/program/libfwklo.so +0x1510b16)
      >  #17 in framework::LoadEnv::loadComponentFromURL(com::sun::star::uno::Reference<com::sun::star::frame::XComponentLoader> const&, com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&, rtl::OUString const&, rtl::OUString const&, int, com::sun::star::uno::Sequence<com::sun::star::beans::PropertyValue> const&) at framework/source/loadenv/loadenv.cxx:169:14 (instdir/program/libfwklo.so +0x150c7c8)
      >  #18 in framework::Desktop::loadComponentFromURL(rtl::OUString const&, rtl::OUString const&, int, com::sun::star::uno::Sequence<com::sun::star::beans::PropertyValue> const&) at framework/source/services/desktop.cxx:619:12 (instdir/program/libfwklo.so +0x166f1ce)
      >  #19 in non-virtual thunk to framework::Desktop::loadComponentFromURL(rtl::OUString const&, rtl::OUString const&, int, com::sun::star::uno::Sequence<com::sun::star::beans::PropertyValue> const&) at framework/source/services/desktop.cxx (instdir/program/libfwklo.so +0x166f3da)
      >  #20 in unotest::MacrosTest::loadFromDesktop(rtl::OUString const&, rtl::OUString const&, com::sun::star::uno::Sequence<com::sun::star::beans::PropertyValue> const&) at unotest/source/cpp/macros_test.cxx:50:60 (workdir/LinkTarget/CppunitTest/../Library/libunotest.so +0x8f176)
      >  #21 in DesktopLOKTest::loadDoc(char const*, LibreOfficeKitDocumentType) at desktop/qa/desktop_lib/test_desktop_lib.cxx:215:19 (workdir/LinkTarget/CppunitTest/libtest_desktop_lib.so +0xf2ca0)
      >  #22 in DesktopLOKTest::testGetSignatureState_Signed() at desktop/qa/desktop_lib/test_desktop_lib.cxx:2254:37 (workdir/LinkTarget/CppunitTest/libtest_desktop_lib.so +0x185a42)
      [...]
      
      Change-Id: I935f2e37ce6bcb0448f89e75a4f34f78ba54f58d
      Reviewed-on: https://gerrit.libreoffice.org/63136
      Tested-by: Jenkins
      Reviewed-by: 's avatarStephan Bergmann <sbergman@redhat.com>
      015e4266
    • Caolán McNamara's avatar
      fix oss-fuzz build · c1ed005e
      Caolán McNamara yazdı
      Change-Id: I22823323e0b4e15dbd6ea5f7efd35301995315bf
      c1ed005e
    • Muhammet Kara's avatar
      tdf#121294: Allow better localization of gallery properties dialog title · 69103eaa
      Muhammet Kara yazdı
      Change-Id: I0ebd1c19a4dfd566f027eb937a2793068a45f913
      Reviewed-on: https://gerrit.libreoffice.org/63165
      Tested-by: Jenkins
      Reviewed-by: 's avatarMuhammet Kara <muhammet.kara@pardus.org.tr>
      69103eaa
    • Noel Grandin's avatar
      loplugin:useuniqueptr in SmDistanceDialog · d5acb9a3
      Noel Grandin yazdı
      Change-Id: Ib5bda0c8cdd0e86ce27a56bfb1b86bc78d93a56f
      Reviewed-on: https://gerrit.libreoffice.org/63129
      Tested-by: Jenkins
      Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
      d5acb9a3
    • Noel Grandin's avatar
      loplugin:singlevalfields in sc · 7c19dff9
      Noel Grandin yazdı
      Change-Id: I7b87680b9d76bb390a0657f5f1783c3a7c9edbc4
      Reviewed-on: https://gerrit.libreoffice.org/63127
      Tested-by: Jenkins
      Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
      7c19dff9
    • Noel Grandin's avatar
      loplugin:singlevalfields in sw · 65d2d264
      Noel Grandin yazdı
      Change-Id: Icdb155f9fa7ae79fc193c2da436d9500e7be4d29
      Reviewed-on: https://gerrit.libreoffice.org/63126
      Tested-by: Jenkins
      Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
      65d2d264
    • Tor Lillqvist's avatar
      Do put a BRAND_SHARE_RESOURCE_SUBDIR setting into fundamentalrc for iOS · 0f68e45e
      Tor Lillqvist yazdı
      Not sure wht it was commented out. For now use
      $(LIBO_SHARE_RESOURCE_FOLDER) which is the same "program/resource" as
      on Unix.
      
      Change-Id: I81b8dd4868e68c3a8c38f9b4f84de7bfc8383d28
      0f68e45e
    • Tor Lillqvist's avatar
      Alignment (whitespace) cleanup · b0bcd15b
      Tor Lillqvist yazdı
      Change-Id: Ie46906d5aa84d91efcb88ca795797883e883939f
      b0bcd15b
    • Tor Lillqvist's avatar
      Do produce messagte catalogs for sw, too, for iOS, when necessary · 6833c9e5
      Tor Lillqvist yazdı
      Change-Id: I9d22b44e6a835819ad32d1402a0d84ed2e465a73
      6833c9e5
    • Sophia Schröder's avatar
      Related: tdf#121134: Changing http to https where possible · 1ffb8c3e
      Sophia Schröder yazdı
      Change-Id: I86ece713abdcecab7873b61ea0c08b28b8bcd8bd
      Reviewed-on: https://gerrit.libreoffice.org/63082
      Tested-by: Jenkins
      Reviewed-by: 's avatarOlivier Hallot <olivier.hallot@libreoffice.org>
      1ffb8c3e
    • Sophia Schröder's avatar
      Related: tdf#121134: Changing http to https where possible · cacb4953
      Sophia Schröder yazdı
      Change-Id: Ic222fbe902686efe75061d1354339e37671144b8
      Reviewed-on: https://gerrit.libreoffice.org/63084
      Tested-by: Jenkins
      Reviewed-by: 's avatarOlivier Hallot <olivier.hallot@libreoffice.org>
      cacb4953
    • Sophia Schröder's avatar
      Related: tdf#121134: Changing http to https where possible · 6bfbd087
      Sophia Schröder yazdı
      Change-Id: I6d99873416d9679f330a471b1f836f084bd5d0c9
      Reviewed-on: https://gerrit.libreoffice.org/63092
      Tested-by: Jenkins
      Reviewed-by: 's avatarOlivier Hallot <olivier.hallot@libreoffice.org>
      6bfbd087