Mass conversion of isNull() -> isEmpty()
This commit is contained in:
parent
25d97e187a
commit
eed9fca10c
5 changed files with 12 additions and 12 deletions
|
|
@ -153,7 +153,7 @@ void ComputerModel::pairComputer(int computerIndex, QString pin)
|
|||
|
||||
void ComputerModel::handlePairingCompleted(NvComputer*, QString error)
|
||||
{
|
||||
emit pairingCompleted(error.isNull() ? QVariant() : error);
|
||||
emit pairingCompleted(error.isEmpty() ? QVariant() : error);
|
||||
}
|
||||
|
||||
void ComputerModel::handleComputerStateChanged(NvComputer* computer)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue