重複インポート

この警告カテゴリーはqmllintによって[duplicate-import]

重複インポート

何が起こりましたか?

文書に重複したimport文が含まれています。

なぜ悪いのですか?

ドキュメントを不必要に汚染し、アプリの起動を遅くするかもしれません。

import QtQuick.Controls
import QtQuick
import QtQuick 2.1 as QQ21
import QtQuick.Controls

Item {

}

この警告を修正するには、重複している最後のインポートを除いてすべて削除してください。インポートの順番を変えないように注意してください:

import QtQuick
import QtQuick 2.1 as QQ21 // different from the previous import
import QtQuick.Controls

Item {

}

© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.