未使用の輸入品
この警告カテゴリーはqmllintによって[unused-imports]
。
未使用のインポート
何が起こったのでしょうか?
import文を使ってQMLモジュールをインポートしましたが、そのモジュールのどの型も使っていません。
これはなぜ悪いのでしょうか?
import文は実際には必要のないQMLモジュールへの依存を記述しています。不必要なQMLモジュールを処理させることで、コードの可読性やQMLエンジンやツールのパフォーマンスに影響を与えます。
例
import QtQuick
import QtQuick.Controls
Item {}
この警告を修正するには、不要なimportを削除してください:
import QtQuick
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.