|
From: <md...@us...> - 2010-11-12 16:56:44
|
Revision: 8796
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8796&view=rev
Author: mdboom
Date: 2010-11-12 16:56:38 +0000 (Fri, 12 Nov 2010)
Log Message:
-----------
Fix indentation
Modified Paths:
--------------
branches/v1_0_maint/src/_backend_agg.cpp
Modified: branches/v1_0_maint/src/_backend_agg.cpp
===================================================================
--- branches/v1_0_maint/src/_backend_agg.cpp 2010-11-12 16:17:37 UTC (rev 8795)
+++ branches/v1_0_maint/src/_backend_agg.cpp 2010-11-12 16:56:38 UTC (rev 8796)
@@ -431,9 +431,11 @@
{
rasterizer.clip_box(int(mpl_round(l)), height - int(mpl_round(b)),
int(mpl_round(r)), height - int(mpl_round(t)));
- } else {
- rasterizer.clip_box(0, 0, width, height);
}
+ else
+ {
+ rasterizer.clip_box(0, 0, width, height);
+ }
_VERBOSE("RendererAgg::set_clipbox done");
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|