Avoid using String::isNull() where it is considered to be confused with isEmpty().

This commit is contained in:
Tsuda Kageyu
2015-11-20 20:59:13 +09:00
parent 224f133d65
commit c4fe65787c
9 changed files with 14 additions and 20 deletions

View File

@ -128,7 +128,7 @@ PropertyMap Mod::Tag::properties() const
PropertyMap properties;
properties["TITLE"] = d->title;
properties["COMMENT"] = d->comment;
if(!(d->trackerName.isNull()))
if(!(d->trackerName.isEmpty()))
properties["TRACKERNAME"] = d->trackerName;
return properties;
}