Since <http://cgit.freedesktop.org/libreoffice/core/commit/?id=d79b96cf6564187c96f5a1451ca98e2c93adee77> "css::uno::Sequence ctor with initializer_list," that class has a ctor taking a C++11 std::initializer_list, which can greatly simplify some code constructing Sequence instances (see the commit for some examples). Find places in the code that would benefit from adapting them (good candidates are "getSupportedServiceNames" functions that return statically known OUString Sequences). (Note that this is a LIBO_INTERNAL_ONLY feature that cannot be used in external code though; in general, just keep away from files in include/cppu, include/cppuhelper, include/sal, include/salhelper, include/uno, and odk/examples.)
As Stephan says that's really great for the getSupportedServiceNames cases: a quick: $ git grep -5 getSupportedServiceNames shows you a load of these places (when you get through accessibility) where we can turn two or often three lines into one like this: css::uno::Sequence< OUString > BridgeFactory::static_getSupportedServiceNames() { - OUString name("com.sun.star.bridge.BridgeFactory"); - return css::uno::Sequence< OUString >(&name, 1); + return css::uno::Sequence<OUString>{ "com.sun.star.bridge.BridgeFactory" }; } Then again - it's not clear to me that this wouldn't produce rather more efficient code with a var-arg method that took C strings =) but at least far more terse. Thanks !
Takeshi Abe committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=9dd8510e41dbdeb39598eed04e260525810141ce tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 4.5.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Migrating Whiteboard tags to Keywords: (EasyHack DifficultyBeginner SkillCpp TopicCleanup ) [NinjaEdit]
I sent following patch for this bug; https://gerrit.libreoffice.org/#/c/21826/
I sent following new patch for this bug; https://gerrit.libreoffice.org/#/c/21836/
kerem committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=af7d23809f8b845fa0fb0401eaaf11f57073e4ee tdf#88205 Delete 'css::uno::Sequence' It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
kerem committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=36c3229a2e7765901dc3c21da3b223eca33266a4 tdf#88205 Delete 'css::uno::Sequence' in framework It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
kerem committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=84b0c3e9f7cc25a5d6860d2ca33852230201915f tdf#88205 Delete 'uno::Sequence' in svl It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Stephan, You said keep away from include/cppuhelper but numfmuno.cxx in https://cgit.freedesktop.org/libreoffice/core/commit/?id=84b0c3e9f7cc25a5d6860d2ca33852230201915f has #include <cppuhelper/supportsservice.hxx> Is this safe?
kerem committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=16f0bac2bf674e23b9f8d00f59f3d238dc3a5c8c tdf#88205 Delete 'css::uno::Sequence' in filter It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
(In reply to Luke from comment #9) > Stephan, > You said keep away from include/cppuhelper but numfmuno.cxx in > https://cgit.freedesktop.org/libreoffice/core/commit/ > ?id=84b0c3e9f7cc25a5d6860d2ca33852230201915f > has > #include <cppuhelper/supportsservice.hxx> > > Is this safe? Yes, that's safe. You should keep away from doing such modifications in files that reside in include/cppuhelper/ etc., but there's nothing wrong with doing such modifications in files elsewhere that just happen to also include files from include/cppuhelper/.
JanI is default CC for Easy Hacks (Add Jan; remove LibreOffice Dev List from CC) [NinjaEdit]
Arnold Dumas committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=9742ee52a842653f7118c4ad8e38c02a6e43e97a tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 5.3.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Arnold Dumas committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=85aa807316f32415d4e53656a20249617a22785c tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 5.3.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Muhammet Kara committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=52f377c2590d71895998a170105d0b07c13c267b tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 5.3.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Muhammet Kara committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=0bd4154b176af84e036c4f0869e635e9fcefed1c tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 5.3.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Muhammet Kara committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=7f01cf67f8181836430fd3c8433e8bf2f55c95f2 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 5.3.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Please be aware, that this easyhack is considered an important but large scale cosmetic change as described in https://wiki.documentfoundation.org/Development/LargeScaleChanges It was in decided by the ESC to close this kind of easyhacks, and send them directly as mail, to new contributors. https://lists.freedesktop.org/archives/libreoffice/2016-August/074920.html Please do not submit patches with many files !! This particular easyhack is kept open as an exception to the rule.
Muhammet Kara committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=e50a95b829b327b07ba35e831ae10fb8c40a71ee tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 5.3.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Please be aware, that this easyhack is considered an important but large scale cosmetic change as described in https://wiki.documentfoundation.org/Development/LargeScaleChanges It was in decided by the ESC to close this kind of easyhacks, and send them directly as mail, to new contributors. https://lists.freedesktop.org/archives/libreoffice/2016-August/074920.html Please do not submit patches with many files !! This particular easyhack is kept open as an exception to the rule
Jochen Nitschke committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=78404fe5549fded2eaf0c5ea6e1ca66039e995af tdf#88205 use list ctor for uno::Sequence<OUString> in sc It will be available in 5.3.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jochen Nitschke committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=f1018190a8f791b7dca195f223b9c987a73a83af tdf#88205 use list ctor for uno::Sequence a11y to canvas It will be available in 5.3.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Chamal committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=9563c13247dec8fdad8bf4e5748e3495f1a5f843 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 5.3.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
commands for code pointers: > git grep -nA 3 -P 'Sequence<.*OUString.*\(\s*[A-Z1-9_][A-Z0-9_]*\s*\)' for OUString Sequence or more general: > git grep -nA 3 -P 'Sequence<.*\(\s*[A-Z1-9_][A-Z0-9_]*\s*\)'
Asela Dasanayaka committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=83cc9a3fae1cf8fa8b6753d1db8ccf7226797613 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 5.3.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
jan iversen: https://gerrit.libreoffice.org/#/c/29797/. Please review. Apologies, I forgot about your comment about not committing a lot of files together (There are small changes in six files). I missed it somehow. Let me know if you want to change it.
nadith committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=0f67b8626b326caa8c43fd7ac57be4dd59b2f281 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 5.3.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Hieronymous committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=dd5e0814cd3d6b1d914e3beaca07fb9cd34e3977 tdf#88205 Adapt uses of css::uno::Sequence to use initialize_list ctor It will be available in 5.3.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
nadith committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=833d952a5735f5128ab4e8af0b9c60218254e3bd tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 5.3.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Hieronymous committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=ad59a9a9cd1e48fa5120c98930f49fd02551185c tdf#88205 css::uno::Sequence to use initializer_list ctor. It will be available in 5.3.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Hieronymous committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=f2c3efb124f12f6087b2304c5c55f202b0d41f9a tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 5.3.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Hieronymous committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=f85439d415e11e314016f18240640038f9ec4387 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 5.3.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
dilekuzulmez committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=a364e1f039b0156306aa951e10632cd225b320a3 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 5.4.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
dilekuzulmez committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=82c7ac5637556cde8c77dcf4e75a771cdc587162 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 5.4.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Fakabbir Amin committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=9fc8b4a3fe9b369093fc133979f84ed7b21b125f tdf#88205 Remove 'css::uno::Sequence' in svx It will be available in 5.4.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Dilek Uzulmez committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=7902ac9fbcdbaefa5ec4e7d8d07c240aecad346a tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 5.4.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
ekuiitr committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=155dd4ebec9c38c0c478f648b09045e037818aea tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.1.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jacek Fraczek committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=10b34eb9f33a19e1189bd822244c04484ae06404 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Ulkem Kasapoglu committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=db2d8301613f2eb95b76f3468d92a06dfd49fff4 tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Better command to find files with candidates: > git grep -A10 getSupportedServiceNames|egrep 'Sequence.*[0-9]+'|grep -o ^.*cxx
Izabela Bakollari committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=48dbd2bc121764c076fdb45e5e9236126a6eec30 tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Julien Nabet committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/f817ce79d501ce32d54d6c8a3492f1913fb85a55%5E%21 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Julien Nabet committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/39921c1657d0d131ab7ed6c5490052f53bb764cb%5E%21 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Julien Nabet committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/c368e0c00e98212e783ae98a18616ea5d0ca6da6%5E%21 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Julien Nabet committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/2379f36bd809c3cf3be71315a85946e273023a8c%5E%21 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Julien Nabet committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/973424ab312bfe38caa486304f5d9dae2cd59069%5E%21 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Julien Nabet committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/1ffb614a1c7b1b693d9e78373b947ab049baa778%5E%21 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Julien Nabet committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/b4092c738321cd9f9e2cba18a49519abcbd4451a%5E%21 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Julien Nabet committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/1c3d143cd4e16271e1ede4484dac2a894f2c9c38%5E%21 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Julien Nabet committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/5ad254ed246cf8d11b55e50ed0ccba5736d0cdbb%5E%21 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Julien Nabet committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/e01949e9c56c1605a4eccbae285f85d1b3085e15%5E%21 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Julien Nabet committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/b1d8262dad9939ffbf38f288d0ec60727e3742fb%5E%21 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Julien Nabet committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/2674cf29a87c8f56ccf9f491c496e36ce4e8e367%5E%21 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Julien Nabet committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/e6196c6c9c85bdf446899a50da81adbfb7037d85%5E%21 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Julien Nabet committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/7d3041beb90de4f3495addf139463860049740fb%5E%21 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Julien Nabet committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/cc70a9dec7730661aacd5fe7ed62f0a29ebf1084%5E%21 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Julien Nabet committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/c5be21da5072a78525ee07bb16dfcf391b8dbf32%5E%21 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Julien Nabet committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/4073994154fbcb3b3ae7ff396fee916a994265c7%5E%21 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Julien Nabet committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/b49f189d9bfb0b5dca5ac259e6f56b49c2d0d08f%5E%21 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Julien Nabet committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/52e086c336cc52dcea410f0c3b8ada8439ebe969%5E%21 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Julien Nabet committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/b68f4ff85bc1d6e008facbc310ddbfb5d799b7a5%5E%21 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Julien Nabet committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/51a30d7daee8779ef51d8db58559e4fe15665d1b%5E%21 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Yusuf Keten committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/dd3e75758f9de9e08022938b5cc948c2a4417058 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.5.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Yusuf Keten committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/1be03e47df4281a2a855a61b71f006dea0e212ff tdf88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.5.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Mesut Çifci committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/4a372929c82e894601ab243a507061e1cfc6a59d tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.5.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Mesut Çifci committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/c4f0c87b2f4ac68accc202731e0328ab101a073e tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.5.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Mesut Çifci committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/edc748c9be3037a88c0f37ace160946e4fbd2a2d tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.5.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Mesut Çifci committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/15abfe9ae976a0d940725cdd570facc372981393 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.5.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Mesut Çifci committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/b8f02637131fcfa499a6397914fdf4687c88053d tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.5.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Mesut Çifci committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/3b9495f82c5eb371b747bc9424c29c49e7a45a67 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.5.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Sarper Akdemir committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/4b723bf58ce49faef032099062515a50d6afcece tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.5.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Burak Bala committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/bfb9a17e6b7033520f108f6402a7a9659d60d3fd tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.5.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Batuhan Taskaya committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/d39ad9cdd5f02b01d4d7b747a9c20168cbe915eb tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.5.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Mehmet Emin Başoğlu committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/4939a8905207c0aa044156dc583e4cdd6e7eb63e tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.5.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Efdal İncesu committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/c8a27f91dad1d84da76f0862954956570b56a602 tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.5.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
iakarsu committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/f29cd4d26921ac22cecdee1d52fce7b3a1672efa tdf#88205: - Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.5.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Mehmet Emin Başoğlu committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/6dc77b9f16e0b3fba6f801a3c307786a7c8a8ddd tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.5.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Mesut Çifci committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/e3bc524629acfdd57898fb11f108fac88ac37be7 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.5.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Faruk Demirbaş committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/627e40b9ef7ba8e9b5b06adc4a553d95cd5e5560 tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.5.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Onur Yilmaz committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/9359d9a94d446fc40c5f98fcdbc3086ecba1f830 tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.5.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Hakan Bakacak committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/7e19348d7e54cf22864f6e14022e28091a576387 tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.5.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Canberk TURAN committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/a654caf5dbca9635d4e7f89eb6d125ea98626da3 tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 6.5.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Eda Nur Var committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/c6f5e12ee3f91234b064222272d756670f3bb207 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 7.0.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
vgeof committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/8209c2569f5726f9ed29f75d30efdccb94f98fe5 tdf#88205 EasyHack change css::uno::Sequence initializations It will be available in 7.0.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
If there was an operator+() defined for Sequence<>, then we could tighten up places that have to append a few values onto the end, like ODateControl::getSupportedServiceNames().
I guess there's already comphelper::concatSequences(), but I still think an operator+ would make sense.
(In reply to Michael Warner from comment #85) > If there was an operator+() defined for Sequence<>, then we could tighten up > places that have to append a few values onto the end, like > ODateControl::getSupportedServiceNames(). ...but which is outside the scope of this easy hack. Please help keep the content of this easy hack focused.
nienzu committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/c1e157b58f3e5e907f61008387973451b7ba31dc tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 7.1.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Michael Warner committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/8d414f3a8de5c25bcd830b1d4d8a7be3c34a2ed4 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 7.1.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Fatih committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/f62f200f31ac20c4e28a1e6fbead512d55bdf04f tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 7.1.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
gozeloglu committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/5ed43ebfbb9406040a2d8eb7869b051f3e99293a tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 7.1.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Please review the changes made by me:https://gerrit.libreoffice.org/c/core/+/107844/1
homeboy445 committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/e37e990650694d7d3a44a38a6bf23751bb33da67 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 7.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Bayram Çiçek committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/691f1cc959dab0418b28e7898825a6cae71b493e tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 7.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Bayram Çiçek committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/ea14c98aaba550ecde4c4736d1a3abdc0fd451ef tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 7.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Chris Sherlock committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/82609e5cf72a5d4bc0f51c0f60d1246eec8953f8 tdf#88205 vcl: Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 7.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
DuP-491 committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/a58333410cdfb3a9e6ef82710534f2422a85aeea tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 7.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
halfhiddencode committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/d7aa42dc1bbedb375a2524cbbc87650e55615e87 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 7.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Vishwas committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/5d07a4fa1d6d669ee9796ff4babdde0644d2eb59 tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 7.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
ViKrAm-Baisclear committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/e520b32a8ba59878fa15012505644ab903f53bbf tdf#88205 Adapt use of uno::Sequence to use initializer_list ctor It will be available in 7.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Tarun Sharma committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/624ba772858d9bf56fd2ff2de555740bbef5593a tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 7.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Mani Kumar committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/bd43c754d3a6977fc2de80bce27d4045046cb32f tdf#88205: Use initializer_list ctor in css::uno::Sequence It will be available in 7.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Ahmet Hakan Çelik committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/348595440143b210f55bfa541ab3f853d468f19f tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 7.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Emircan Agac committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/56ace1c8728ffc9f34901497fa907818412046ea tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 7.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
It looks like very many of the relevant places in the code have meanwhile been adapted. (Though there is no easy thing to grep for to tell with 100% certainty, so there may still be a few places left, but which is harmless.) And at least the last dozen or so commits here merely did some cosmetic changes, but didn't introduce uses of Sequence's initializer_list constructor anyway. So I'm marking this easy hack as FIXED now. Thanks again to all the newcomers who contributed to this issue!
Zeynep Yavuz committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/d55de29c165e34b8a9ccb7ebf79f76a601103977 tdf#88205: Adapt uses of css::uno::Sequence to use initialize_list ctor It will be available in 7.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Yousef_Rabia committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/08c283d63fa648f3db1ab6dddf9edb73f0c7194e tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor It will be available in 7.6.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.