aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/tools/shellutils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/corelib/tools/shellutils.h')
-rw-r--r--src/lib/corelib/tools/shellutils.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/corelib/tools/shellutils.h b/src/lib/corelib/tools/shellutils.h
index 9d840db2d..5d748152b 100644
--- a/src/lib/corelib/tools/shellutils.h
+++ b/src/lib/corelib/tools/shellutils.h
@@ -44,7 +44,8 @@
#include "qbs_export.h"
#include "hostosinfo.h"
#include <QtCore/qstring.h>
-#include <QtCore/qvector.h>
+
+#include <vector>
namespace qbs {
namespace Internal {
@@ -78,7 +79,7 @@ private:
bool m_isRawProgram;
QString m_program;
- QVector<Argument> m_arguments;
+ std::vector<Argument> m_arguments;
};
} // namespace Internal