Yet another pass of style fixes.

This commit is contained in:
Andreas Kling 2018-12-21 02:10:45 +01:00
commit ec1c487dcd
Notes: sideshowbarker 2024-07-19 16:07:52 +09:00
43 changed files with 183 additions and 185 deletions

View file

@ -6,7 +6,7 @@
static unsigned parseUInt(const String& str, bool& ok)
{
if (str.isEmpty()) {
if (str.is_empty()) {
ok = false;
return 0;
}