aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/remotelinux/linuxdevice.h
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2013-09-16 11:12:31 +0200
committerChristian Kandeler <christian.kandeler@digia.com>2013-09-17 13:36:08 +0200
commit2a3ef09473d0af1f8bb2ffa89fd737913341d688 (patch)
tree3e9e03b669f660804d412e2103539d1f0b171550 /src/plugins/remotelinux/linuxdevice.h
parent0b5639f7358a14d9b5eb2b6db6b6671bd8853e8c (diff)
Device support: Make IDevice::executeAction non-const.
Presumably this function is currently const because no current implementation actually changes device properties, but there is no reason why that should not be allowed. Change-Id: I80e4355be70e40bca9df5e1287a1d1d3f60c6534 Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Diffstat (limited to 'src/plugins/remotelinux/linuxdevice.h')
-rw-r--r--src/plugins/remotelinux/linuxdevice.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/remotelinux/linuxdevice.h b/src/plugins/remotelinux/linuxdevice.h
index 85946e735e..f19a2476b2 100644
--- a/src/plugins/remotelinux/linuxdevice.h
+++ b/src/plugins/remotelinux/linuxdevice.h
@@ -66,7 +66,7 @@ public:
ProjectExplorer::IDeviceWidget *createWidget();
QList<Core::Id> actionIds() const;
QString displayNameForActionId(Core::Id actionId) const;
- void executeAction(Core::Id actionId, QWidget *parent) const;
+ void executeAction(Core::Id actionId, QWidget *parent);
ProjectExplorer::IDevice::Ptr clone() const;
ProjectExplorer::DeviceProcessSupport::Ptr processSupport() const;