mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-29 06:12:18 -06:00
uppsrc: Fixed some clang warnings
git-svn-id: svn://ultimatepp.org/upp/trunk@5808 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
aa2ce5e0ae
commit
d8cd08c64f
18 changed files with 49 additions and 56 deletions
|
|
@ -262,7 +262,7 @@ int TextCompareCtrl::MeasureLength(const char *text) const
|
|||
String TextCompareCtrl::ExpandTabs(const char *text) const
|
||||
{
|
||||
String out;
|
||||
for(char c; c = *text++;)
|
||||
for(char c; (c = *text++);)
|
||||
if(c == '\t')
|
||||
out.Cat(' ', tabsize - out.GetLength() % tabsize);
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue