From 6161d0eb0c9ece0fb571d170831dd51ad1f60997 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorbj=C3=B8rn=20Lindeijer?= Date: Wed, 23 Mar 2011 17:24:07 +0100 Subject: [PATCH] QmlJSDebugger: Disabled the Qt Quick tool box entirely for now This tool box doesn't add much value since the same actions are available from Qt Creator and in the case of using the Observer, some actions are also available from its menus. Reviewed-by: Kai Koehne --- .../qml/qmljsdebugger/qdeclarativeviewobserver.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/share/qtcreator/qml/qmljsdebugger/qdeclarativeviewobserver.cpp b/share/qtcreator/qml/qmljsdebugger/qdeclarativeviewobserver.cpp index 6bf346fb6ad..a499e476e1d 100644 --- a/share/qtcreator/qml/qmljsdebugger/qdeclarativeviewobserver.cpp +++ b/share/qtcreator/qml/qmljsdebugger/qdeclarativeviewobserver.cpp @@ -136,8 +136,9 @@ QDeclarativeViewObserver::QDeclarativeViewObserver(QDeclarativeView *view, QObje data->debugService = QDeclarativeObserverService::instance(); - connect(data->debugService, SIGNAL(debuggingClientChanged(bool)), - data.data(), SLOT(_q_setToolBoxVisible(bool))); + // tool box is disabled + //connect(data->debugService, SIGNAL(debuggingClientChanged(bool)), + // data.data(), SLOT(_q_setToolBoxVisible(bool))); connect(data->debugService, SIGNAL(designModeBehaviorChanged(bool)), SLOT(setDesignModeBehavior(bool))); @@ -205,6 +206,8 @@ void QDeclarativeViewObserverPrivate::_q_setToolBoxVisible(bool visible) createToolBox(); if (toolBox) toolBox->setVisible(visible); +#else + Q_UNUSED(visible) #endif }