Remove unused enum
This commit is contained in:
parent
c822ef8104
commit
c038c41eec
2 changed files with 1 additions and 6 deletions
|
@ -195,7 +195,7 @@ void Device::pairStatusChanged(DeviceLink::PairStatus status)
|
||||||
reloadPlugins(); //Will load/unload plugins
|
reloadPlugins(); //Will load/unload plugins
|
||||||
|
|
||||||
bool isTrusted = (status == DeviceLink::Paired);
|
bool isTrusted = (status == DeviceLink::Paired);
|
||||||
Q_EMIT trustedChanged(isTrusted? Trusted : NotTrusted);
|
Q_EMIT trustedChanged(isTrusted);
|
||||||
Q_ASSERT(isTrusted == this->isTrusted());
|
Q_ASSERT(isTrusted == this->isTrusted());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -55,11 +55,6 @@ public:
|
||||||
Tablet,
|
Tablet,
|
||||||
};
|
};
|
||||||
|
|
||||||
enum TrustStatus {
|
|
||||||
NotTrusted,
|
|
||||||
Trusted
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Restores the @p device from the saved configuration
|
* Restores the @p device from the saved configuration
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue