forked from qt-creator/qt-creator
QmlJSInspector: Remove Color Picker Tool
Change-Id: Ic1a158f3e96052fcf30071ec827c23a4a83625f5 Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
This commit is contained in:
committed by
Kai Koehne
parent
ebeb5b7f49
commit
f14dffe681
@@ -95,8 +95,6 @@ void ClientProxy::connectToServer()
|
||||
this, SLOT(clientStatusChanged(QDeclarativeDebugClient::Status)));
|
||||
connect(m_inspectorClient, SIGNAL(currentObjectsChanged(QList<int>)),
|
||||
SLOT(onCurrentObjectsChanged(QList<int>)));
|
||||
connect(m_inspectorClient, SIGNAL(colorPickerActivated()),
|
||||
SIGNAL(colorPickerActivated()));
|
||||
connect(m_inspectorClient, SIGNAL(zoomToolActivated()),
|
||||
SIGNAL(zoomToolActivated()));
|
||||
connect(m_inspectorClient, SIGNAL(selectToolActivated()),
|
||||
@@ -113,8 +111,6 @@ void ClientProxy::connectToServer()
|
||||
SIGNAL(showAppOnTopChanged(bool)));
|
||||
connect(m_inspectorClient, SIGNAL(reloaded()), this,
|
||||
SIGNAL(serverReloaded()));
|
||||
connect(m_inspectorClient, SIGNAL(selectedColorChanged(QColor)),
|
||||
SIGNAL(selectedColorChanged(QColor)));
|
||||
connect(m_inspectorClient, SIGNAL(logActivity(QString,QString)),
|
||||
m_adapter.data(), SLOT(logServiceActivity(QString,QString)));
|
||||
|
||||
@@ -609,12 +605,6 @@ void ClientProxy::setAnimationPaused(bool paused)
|
||||
m_inspectorClient->setAnimationPaused(paused);
|
||||
}
|
||||
|
||||
void ClientProxy::changeToColorPickerTool()
|
||||
{
|
||||
if (isConnected())
|
||||
m_inspectorClient->changeToColorPickerTool();
|
||||
}
|
||||
|
||||
void ClientProxy::changeToZoomTool()
|
||||
{
|
||||
if (isConnected())
|
||||
|
||||
Reference in New Issue
Block a user