diff options
author | Christian Kandeler <[email protected]> | 2013-09-16 11:12:31 +0200 |
---|---|---|
committer | Christian Kandeler <[email protected]> | 2013-09-17 13:36:08 +0200 |
commit | 2a3ef09473d0af1f8bb2ffa89fd737913341d688 (patch) | |
tree | 3e9e03b669f660804d412e2103539d1f0b171550 /src/plugins/android/androiddevice.cpp | |
parent | 0b5639f7358a14d9b5eb2b6db6b6671bd8853e8c (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 <[email protected]>
Diffstat (limited to 'src/plugins/android/androiddevice.cpp')
-rw-r--r-- | src/plugins/android/androiddevice.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/android/androiddevice.cpp b/src/plugins/android/androiddevice.cpp index 64cc451eee8..374b4ad3a1b 100644 --- a/src/plugins/android/androiddevice.cpp +++ b/src/plugins/android/androiddevice.cpp @@ -78,7 +78,7 @@ QString AndroidDevice::displayNameForActionId(Core::Id actionId) const return QString(); } -void AndroidDevice::executeAction(Core::Id actionId, QWidget *parent) const +void AndroidDevice::executeAction(Core::Id actionId, QWidget *parent) { Q_UNUSED(actionId) Q_UNUSED(parent) |