forked from qt-creator/qt-creator
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>
This commit is contained in:
@@ -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)
|
||||
|
Reference in New Issue
Block a user