Code review comment for lp://qastaging/~mzanetti/unity8/surfacetitles-in-quicklist

Revision history for this message
Lukáš Tinkl (lukas-kde) wrote :

+ surfaces.append(qMakePair<QString, QString>(iface->persistentId(), iface->name()));

Imho you could just use the initializer_list CTOR here, so:

+ surfaces.append({iface->persistentId(), iface->name()});

review: Needs Information

« Back to merge proposal