Rename variable to be more correct

This commit is contained in:
Jordan Sherer 2019-01-09 11:03:32 -05:00
parent 05f584a58b
commit 3d7b523746

View File

@ -314,8 +314,8 @@ bool Varicode::startsWithCQ(QString text){
} }
bool Varicode::startsWithHB(QString text){ bool Varicode::startsWithHB(QString text){
foreach(auto cq, hbs.values()){ foreach(auto hb, hbs.values()){
if(text.startsWith(cq)){ if(text.startsWith(hb)){
return true; return true;
} }
} }