diff options
author | Eike Ziller <eike.ziller@qt.io> | 2019-05-27 14:12:11 +0200 |
---|---|---|
committer | Eike Ziller <eike.ziller@qt.io> | 2019-05-27 14:21:00 +0000 |
commit | e0b0a08e50cef4c91808e30c2d3d33ee1b0cd0b8 (patch) | |
tree | f0f8231b559ea100015eb1dc3029b076dd78399a /src/app | |
parent | e846b8717aad09e71650c6ca95b05d320f1eb3f1 (diff) | |
download | qt-creator-e0b0a08e50cef4c91808e30c2d3d33ee1b0cd0b8.tar.gz |
ExtensionSystem: Move away from QList
Qt 6 API will move away from it.
Use QVector for API and some std container for internal things.
Change-Id: Iff14d48a47d5ac52ade875d9c8c84ad8a4f577d8
Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/app')
-rw-r--r-- | src/app/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/main.cpp b/src/app/main.cpp index 17e2d3bf29..a531543c7e 100644 --- a/src/app/main.cpp +++ b/src/app/main.cpp @@ -102,7 +102,7 @@ const char BLOCK_OPTION[] = "-block"; const char PLUGINPATH_OPTION[] = "-pluginpath"; const char USER_LIBRARY_PATH_OPTION[] = "-user-library-path"; // hidden option for qtcreator.sh -typedef QList<PluginSpec *> PluginSpecSet; +using PluginSpecSet = QVector<PluginSpec *>; // Helpers for displaying messages. Note that there is no console on Windows. |