summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorDouglas Mencken <dougmencken@gmail.com>2014-05-22 13:08:14 -0400
committerTomaž Vajngerl <quikee@gmail.com>2014-05-22 15:10:57 -0500
commit4fbbfc2269d9671415efea2d946176abb83c5930 (patch)
treeb005bf027887b54d3489ac3b2a8a57eb3b9f4454 /unotools
parentc0765d1b5e317ec542be8285649c2c2a70892eff (diff)
WoE: while (..) {} instead of while(..);
"warning: suggest a space before ';' or explicit braces around empty body" Change-Id: I71a55cc888d3480217621491ecace7d0af3dca6e Reviewed-on: https://gerrit.libreoffice.org/9441 Reviewed-by: Tomaž Vajngerl <quikee@gmail.com> Tested-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'unotools')
-rw-r--r--unotools/source/config/fontcfg.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/unotools/source/config/fontcfg.cxx b/unotools/source/config/fontcfg.cxx
index fccab2d71125..e442870faa75 100644
--- a/unotools/source/config/fontcfg.cxx
+++ b/unotools/source/config/fontcfg.cxx
@@ -700,7 +700,7 @@ static bool ImplKillTrailingWithExceptions( OUString& rName, const char* const*
else
{
// skip exception strings
- while( *++ppStr );
+ while( *++ppStr ) {}
}
}