diff options
author | David Tardon <dtardon@redhat.com> | 2011-08-11 06:43:59 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2011-08-11 06:45:08 +0200 |
commit | 180c35752d4c57011478bcb76dcb55bdc97caff6 (patch) | |
tree | ee4136a00c96f5c3ae259274bb3f4cc760c60f44 /cppcanvas | |
parent | 45f891fbb60cfa0332a0ffb359127e22159cf4ad (diff) |
WaE: add braces around empty body in else stmt
Diffstat (limited to 'cppcanvas')
-rw-r--r-- | cppcanvas/source/mtfrenderer/emfplus.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cppcanvas/source/mtfrenderer/emfplus.cxx b/cppcanvas/source/mtfrenderer/emfplus.cxx index dfb7c34e70fa..460818a57c64 100644 --- a/cppcanvas/source/mtfrenderer/emfplus.cxx +++ b/cppcanvas/source/mtfrenderer/emfplus.cxx @@ -1433,8 +1433,9 @@ namespace cppcanvas rFactoryParms.mrCurrActionIndex += pBmpAction->getActionCount()-1; } - } else + } else { EMFP_DEBUG (printf ("EMF+ warning: empty bitmap\n")); + } } else { EMFP_DEBUG (printf ("EMF+ DrawImagePoints TODO (fixme)\n")); } |