Details
-
Bug
-
Resolution: Fixed
-
P1: Critical
-
5.15
-
None
Description
If appman is provided with several configurations, it is supposed to merge the configuration files, resulting in a new configuration.
For parameters like ui.importPaths the result should be a list of all defined import paths from both configurations.
However, currently it will only use the ui.importPaths list from the latter of the two configuration files.
This happens because ui.importPaths is a QStringList and the best overload match of mergeField would be:
template <typename T> void mergeField(T &into, const T &from, const T &def) { if (from != def) into = from; }
The same result would happen for every other QStringList in the configuration.
Attachments
For Gerrit Dashboard: AUTOSUITE-1620 | ||||||
---|---|---|---|---|---|---|
# | Subject | Branch | Project | Status | CR | V |
313235,10 | Fix lists not being merged when using multiple config files | 5.15 | qt/qtapplicationmanager | Status: MERGED | +2 | 0 |