summaryrefslogtreecommitdiff
path: root/src/plugins/qmldesigner/components/propertyeditor/propertyeditorcontextobject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/qmldesigner/components/propertyeditor/propertyeditorcontextobject.cpp')
-rw-r--r--src/plugins/qmldesigner/components/propertyeditor/propertyeditorcontextobject.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorcontextobject.cpp b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorcontextobject.cpp
index 421db6c478..a8aebbfb07 100644
--- a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorcontextobject.cpp
+++ b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorcontextobject.cpp
@@ -19,6 +19,7 @@
#include <QApplication>
#include <QCursor>
#include <QFontDatabase>
+#include <QLoggingCategory>
#include <QMessageBox>
#include <QQmlContext>
#include <QWindow>
@@ -68,7 +69,9 @@ QColor convertColorFromString(const QString &s)
namespace QmlDesigner {
-PropertyEditorContextObject::PropertyEditorContextObject(QObject *parent)
+static Q_LOGGING_CATEGORY(urlSpecifics, "qtc.propertyeditor.specifics", QtWarningMsg)
+
+ PropertyEditorContextObject::PropertyEditorContextObject(QObject *parent)
: QObject(parent)
, m_isBaseState(false)
, m_selectionChanged(false)
@@ -443,6 +446,8 @@ void PropertyEditorContextObject::setSpecificsUrl(const QUrl &newSpecificsUrl)
if (newSpecificsUrl == m_specificsUrl)
return;
+ qCInfo(urlSpecifics) << Q_FUNC_INFO << newSpecificsUrl;
+
m_specificsUrl = newSpecificsUrl;
emit specificsUrlChanged();
}