Bug 88205 - Adapt uses of css::uno::Sequence to use initializer_list ctor
Summary: Adapt uses of css::uno::Sequence to use initializer_list ctor
Status: RESOLVED FIXED
Alias: None
Product: LibreOffice
Classification: Unclassified
Component: LibreOffice (show other bugs)
Version:
(earliest affected)
unspecified
Hardware: All All
: medium normal
Assignee: Not Assigned
URL:
Whiteboard: target:5.3.0 target:5.4.0 target:6.1....
Keywords: difficultyBeginner, easyHack, skillCpp, topicCleanup
Depends on:
Blocks:
 
Reported: 2015-01-08 16:51 UTC by Stephan Bergmann
Modified: 2023-03-15 10:50 UTC (History)
3 users (show)

See Also:
Crash report or crash signature:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Stephan Bergmann 2015-01-08 16:51:27 UTC
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.)
Comment 1 Michael Meeks 2015-01-26 21:42:55 UTC
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 !
Comment 2 Commit Notification 2015-03-05 10:41:44 UTC
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.
Comment 3 Robinson Tryon (qubit) 2015-12-14 06:35:25 UTC Comment hidden (obsolete)
Comment 4 kerem 2016-01-26 21:09:53 UTC
I sent following patch for this bug;

https://gerrit.libreoffice.org/#/c/21826/
Comment 5 kerem 2016-01-27 09:59:36 UTC
I sent following new patch for this bug;

https://gerrit.libreoffice.org/#/c/21836/
Comment 6 Commit Notification 2016-01-31 13:47:33 UTC
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.
Comment 7 Commit Notification 2016-02-03 08:28:37 UTC
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.
Comment 8 Commit Notification 2016-02-08 20:05:02 UTC
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.
Comment 9 Luke 2016-02-08 21:01:55 UTC
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?
Comment 10 Commit Notification 2016-02-09 06:20:25 UTC
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.
Comment 11 Stephan Bergmann 2016-02-09 10:17:24 UTC
(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/.
Comment 12 Robinson Tryon (qubit) 2016-02-18 14:51:35 UTC Comment hidden (obsolete)
Comment 13 Commit Notification 2016-06-29 14:46:01 UTC
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.
Comment 14 Commit Notification 2016-07-01 15:27:48 UTC
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.
Comment 15 Commit Notification 2016-08-02 05:46:03 UTC
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.
Comment 16 Commit Notification 2016-08-04 05:41:41 UTC
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.
Comment 17 Commit Notification 2016-08-04 05:49:10 UTC
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.
Comment 18 jani 2016-08-05 09:18:26 UTC
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.
Comment 19 Commit Notification 2016-08-05 12:46:56 UTC
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.
Comment 20 jani 2016-08-05 18:56:53 UTC
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
Comment 21 Commit Notification 2016-09-11 07:17:40 UTC
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.
Comment 22 Commit Notification 2016-09-14 07:24:53 UTC
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.
Comment 23 Commit Notification 2016-10-02 10:59:10 UTC
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.
Comment 24 JoNi 2016-10-02 11:59:54 UTC
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*\)'
Comment 25 Commit Notification 2016-10-13 14:36:06 UTC
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.
Comment 26 Sudarshan K 2016-10-13 19:54:59 UTC
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.
Comment 27 Commit Notification 2016-10-14 06:14:47 UTC
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.
Comment 28 Commit Notification 2016-10-14 06:33:35 UTC
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.
Comment 29 Commit Notification 2016-10-14 06:39:14 UTC
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.
Comment 30 Commit Notification 2016-10-16 10:59:06 UTC
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.
Comment 31 Commit Notification 2016-10-16 11:02:01 UTC
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.
Comment 32 Commit Notification 2016-10-16 11:03:51 UTC
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.
Comment 33 Commit Notification 2017-02-02 20:00:53 UTC
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.
Comment 34 Commit Notification 2017-02-03 12:20:29 UTC
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.
Comment 35 Commit Notification 2017-03-06 07:12:55 UTC
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.
Comment 36 Commit Notification 2017-05-18 07:39:42 UTC
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.
Comment 37 Commit Notification 2018-01-26 07:30:31 UTC
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.
Comment 38 Commit Notification 2018-07-02 12:07:57 UTC
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.
Comment 39 Commit Notification 2018-07-14 13:32:16 UTC
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.
Comment 40 Björn Michaelsen 2018-10-27 10:25:35 UTC
Better command to find files with candidates:

> git grep -A10 getSupportedServiceNames|egrep 'Sequence.*[0-9]+'|grep -o ^.*cxx
Comment 41 Commit Notification 2018-10-27 15:55:41 UTC
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.
Comment 42 Commit Notification 2019-08-15 18:50:27 UTC
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.
Comment 43 Commit Notification 2019-08-15 18:50:34 UTC
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.
Comment 44 Commit Notification 2019-08-15 21:01:44 UTC
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.
Comment 45 Commit Notification 2019-08-16 13:11:46 UTC
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.
Comment 46 Commit Notification 2019-08-16 14:04:11 UTC
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.
Comment 47 Commit Notification 2019-08-17 11:31:15 UTC
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.
Comment 48 Commit Notification 2019-08-17 11:31:25 UTC
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.
Comment 49 Commit Notification 2019-08-17 11:31:32 UTC
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.
Comment 50 Commit Notification 2019-08-17 11:31:41 UTC
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.
Comment 51 Commit Notification 2019-08-17 13:26:59 UTC
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.
Comment 52 Commit Notification 2019-08-17 15:04:23 UTC
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.
Comment 53 Commit Notification 2019-08-17 15:04:29 UTC
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.
Comment 54 Commit Notification 2019-08-17 16:44:29 UTC
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.
Comment 55 Commit Notification 2019-08-17 18:11:06 UTC
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.
Comment 56 Commit Notification 2019-08-17 20:17:35 UTC
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.
Comment 57 Commit Notification 2019-08-17 20:17:42 UTC
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.
Comment 58 Commit Notification 2019-08-17 20:17:53 UTC
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.
Comment 59 Commit Notification 2019-08-18 08:18:51 UTC
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.
Comment 60 Commit Notification 2019-08-18 08:34:53 UTC
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.
Comment 61 Commit Notification 2019-08-18 09:29:03 UTC
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.
Comment 62 Commit Notification 2019-08-18 12:34:18 UTC
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.
Comment 63 Commit Notification 2020-01-12 16:08:27 UTC
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.
Comment 64 Commit Notification 2020-01-12 16:10:58 UTC
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.
Comment 65 Commit Notification 2020-01-13 09:42:17 UTC
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.
Comment 66 Commit Notification 2020-01-13 09:49:32 UTC
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.
Comment 67 Commit Notification 2020-01-14 08:56:31 UTC
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.
Comment 68 Commit Notification 2020-01-15 13:53:13 UTC
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.
Comment 69 Commit Notification 2020-01-15 13:55:46 UTC
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.
Comment 70 Commit Notification 2020-01-16 17:21:58 UTC
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.
Comment 71 Commit Notification 2020-01-27 20:56:33 UTC
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.
Comment 72 Commit Notification 2020-01-27 21:06:50 UTC
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.
Comment 73 Commit Notification 2020-01-27 21:08:28 UTC
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.
Comment 74 Commit Notification 2020-01-27 21:15:40 UTC
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.
Comment 75 Commit Notification 2020-01-28 08:58:17 UTC
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.
Comment 76 Commit Notification 2020-01-28 13:45:45 UTC
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.
Comment 77 Commit Notification 2020-01-28 13:50:25 UTC
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.
Comment 78 Commit Notification 2020-01-28 20:15:32 UTC
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.
Comment 79 Commit Notification 2020-01-28 20:20:34 UTC
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.
Comment 80 Commit Notification 2020-01-28 20:23:11 UTC
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.
Comment 81 Commit Notification 2020-01-28 20:25:26 UTC
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.
Comment 82 Commit Notification 2020-01-29 21:11:22 UTC
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.
Comment 83 Commit Notification 2020-02-20 10:15:12 UTC
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.
Comment 84 Commit Notification 2020-05-19 07:40:28 UTC
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.
Comment 85 Michael Warner 2020-05-24 13:28:59 UTC
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().
Comment 86 Michael Warner 2020-05-24 14:04:32 UTC
I guess there's already comphelper::concatSequences(), but I still think an operator+ would make sense.
Comment 87 Stephan Bergmann 2020-05-25 07:23:28 UTC
(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.
Comment 88 Commit Notification 2020-06-05 09:35:28 UTC
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.
Comment 89 Commit Notification 2020-06-10 06:18:17 UTC
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.
Comment 90 Commit Notification 2020-06-11 14:16:24 UTC
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.
Comment 91 Commit Notification 2020-11-22 10:54:40 UTC
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.
Comment 92 Homeboy_445 2020-12-19 10:00:54 UTC
Please review the changes made by me:https://gerrit.libreoffice.org/c/core/+/107844/1
Comment 93 Commit Notification 2020-12-20 15:14:55 UTC
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.
Comment 94 Commit Notification 2020-12-25 10:51:41 UTC
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.
Comment 95 Commit Notification 2020-12-26 16:16:31 UTC
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.
Comment 96 Commit Notification 2020-12-27 16:03:12 UTC
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.
Comment 97 Commit Notification 2021-01-01 16:32:37 UTC
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.
Comment 98 Commit Notification 2021-01-04 09:13:49 UTC
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.
Comment 99 Commit Notification 2021-01-11 12:01:35 UTC
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.
Comment 100 Commit Notification 2021-02-07 16:26:19 UTC
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.
Comment 101 Commit Notification 2021-02-08 14:39:43 UTC
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.
Comment 102 Commit Notification 2021-03-18 06:30:43 UTC
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.
Comment 103 Commit Notification 2021-04-14 09:08:06 UTC
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.
Comment 104 Commit Notification 2021-08-12 10:55:01 UTC
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.
Comment 105 Stephan Bergmann 2021-08-12 11:41:08 UTC
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!
Comment 106 Commit Notification 2021-08-12 16:03:44 UTC
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.
Comment 107 Commit Notification 2023-03-15 10:50:53 UTC
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.