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:
parent
3e3aaa33db
commit
ccd98c6ad9
1 changed files with 1 additions and 1 deletions
|
|
@ -1904,7 +1904,7 @@ wxString wxPGProperty::GetFlagsAsString( FlagType flagsMask ) const
|
|||
s << wxS("|");
|
||||
s << fs;
|
||||
}
|
||||
a = a << 1;
|
||||
a <<= 1;
|
||||
}
|
||||
|
||||
return s;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue