diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2011-03-01 17:39:41 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2011-03-01 17:42:12 +0100 |
commit | 77b7e1067482dee05c4447c5e0ec9be9fca8879e (patch) | |
tree | 106e39748203a6625319477e521d577387fe4f80 /chart2/source | |
parent | 6e43ce16e6ac835dae31ccebee0171f85568baeb (diff) |
Remove unnecessary semicolons
Diffstat (limited to 'chart2/source')
-rw-r--r-- | chart2/source/tools/CommonConverters.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chart2/source/tools/CommonConverters.cxx b/chart2/source/tools/CommonConverters.cxx index 209daf5c1..9d2fd0eb4 100644 --- a/chart2/source/tools/CommonConverters.cxx +++ b/chart2/source/tools/CommonConverters.cxx @@ -211,12 +211,12 @@ drawing::Position3D getPointFromPoly( const drawing::PolyPolygonShape3D& rPolygo } else { - ;DBG_ERROR("polygon was accessed with a wrong index"); + DBG_ERROR("polygon was accessed with a wrong index"); } } else { - ;DBG_ERROR("polygon was accessed with a wrong index"); + DBG_ERROR("polygon was accessed with a wrong index"); } return aRet; } |