Refactor: use <<= bit shift assignment operator in wxPGProperty::GetFlagsAsString.

Use it instead of << operator which is used to just shift bits in one variable.
This commit is contained in:
Artur Wieczorek 2015-06-05 22:49:49 +02:00
parent 3e3aaa33db
commit ccd98c6ad9

View File

@ -1904,7 +1904,7 @@ wxString wxPGProperty::GetFlagsAsString( FlagType flagsMask ) const
s << wxS("|");
s << fs;
}
a = a << 1;
a <<= 1;
}
return s;