diff --git a/src/plugins/qmlprofiler/qml/Label.qml b/src/plugins/qmlprofiler/qml/CategoryLabel.qml similarity index 100% rename from src/plugins/qmlprofiler/qml/Label.qml rename to src/plugins/qmlprofiler/qml/CategoryLabel.qml diff --git a/src/plugins/qmlprofiler/qml/MainView.qml b/src/plugins/qmlprofiler/qml/MainView.qml index 82a77d6bcc5..f06e88af941 100644 --- a/src/plugins/qmlprofiler/qml/MainView.qml +++ b/src/plugins/qmlprofiler/qml/MainView.qml @@ -533,7 +533,7 @@ Rectangle { id: col Repeater { model: labels.rowCount - delegate: Label { } + delegate: CategoryLabel { } } } } diff --git a/src/plugins/qmlprofiler/qml/qmlprofiler.qrc b/src/plugins/qmlprofiler/qml/qmlprofiler.qrc index ab3f8598da0..1e45c140656 100644 --- a/src/plugins/qmlprofiler/qml/qmlprofiler.qrc +++ b/src/plugins/qmlprofiler/qml/qmlprofiler.qrc @@ -1,7 +1,7 @@ Detail.qml - Label.qml + CategoryLabel.qml MainView.qml RangeDetails.qml RangeMover.qml diff --git a/src/plugins/qmlprofiler/qmlprofiler.pro b/src/plugins/qmlprofiler/qmlprofiler.pro index f5b68699d5d..8be84235331 100644 --- a/src/plugins/qmlprofiler/qmlprofiler.pro +++ b/src/plugins/qmlprofiler/qmlprofiler.pro @@ -69,7 +69,7 @@ RESOURCES += \ OTHER_FILES += \ qml/Detail.qml \ - qml/Label.qml \ + qml/CategoryLabel.qml \ qml/MainView.qml \ qml/RangeDetails.qml \ qml/RangeMover.qml \ diff --git a/src/plugins/qmlprofiler/qmlprofiler.qbs b/src/plugins/qmlprofiler/qmlprofiler.qbs index ab92e9d590e..507ce1093e7 100644 --- a/src/plugins/qmlprofiler/qmlprofiler.qbs +++ b/src/plugins/qmlprofiler/qmlprofiler.qbs @@ -71,7 +71,7 @@ QtcPlugin { prefix: "qml/" files: [ "Detail.qml", - "Label.qml", + "CategoryLabel.qml", "MainView.qml", "Overview.js", "Overview.qml",