From 753dd85162d692525145be19e13765924b777740 Mon Sep 17 00:00:00 2001 From: Aurindam Jana Date: Wed, 17 Apr 2013 17:42:00 +0200 Subject: [PATCH] DesktopDevice: Hide Device Configuration widget Change-Id: I0c522cdb20e7c08761fdb4bc0e588e5e8789895b Reviewed-by: Aurindam Jana --- src/plugins/projectexplorer/devicesupport/desktopdevice.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/devicesupport/desktopdevice.cpp b/src/plugins/projectexplorer/devicesupport/desktopdevice.cpp index 4eb851a5c4a..68478164d7f 100644 --- a/src/plugins/projectexplorer/devicesupport/desktopdevice.cpp +++ b/src/plugins/projectexplorer/devicesupport/desktopdevice.cpp @@ -70,7 +70,10 @@ QString DesktopDevice::displayType() const IDeviceWidget *DesktopDevice::createWidget() { - return new DesktopDeviceConfigurationWidget(sharedFromThis()); + return 0; + // DesktopDeviceConfigurationWidget currently has just one editable field viz. free ports. + // Querying for an available port is quite straightforward. Having a field for the port + // range can be confusing to the user. Hence, disabling the widget for now. } QList DesktopDevice::actionIds() const