Mass conversion of isNull() -> isEmpty()

This commit is contained in:
Cameron Gutman
2018-09-14 18:36:15 -07:00
parent 25d97e187a
commit eed9fca10c
5 changed files with 12 additions and 12 deletions

View File

@@ -17,7 +17,7 @@ public:
bool isInitialized()
{
return id != 0 && !name.isNull();
return id != 0 && !name.isEmpty();
}
int id;