summaryrefslogtreecommitdiff
path: root/agg
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 03:58:09 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 03:58:09 +0000
commit96d03076023499167ddc081139bc02b62939b7f8 (patch)
tree92791194089a9aa85dcd7a502e88fcced42c34d3 /agg
parent371c75264fa3e22947bd70b04561acdf0f3e90b1 (diff)
INTEGRATION: CWS warnings01 (1.1.4); FILE MERGED
2005/12/02 10:37:19 mbu 1.1.4.1: necessary changes to prevent warnings
Diffstat (limited to 'agg')
-rwxr-xr-xagg/inc/agg_vpgen_clip_polyline.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/agg/inc/agg_vpgen_clip_polyline.h b/agg/inc/agg_vpgen_clip_polyline.h
index 6f2ed46246e6..f951966a3293 100755
--- a/agg/inc/agg_vpgen_clip_polyline.h
+++ b/agg/inc/agg_vpgen_clip_polyline.h
@@ -41,12 +41,12 @@ namespace agg
{
}
- void clip_box(double x1, double y1, double x2, double y2)
+ void clip_box(double _x1, double _y1, double _x2, double _y2)
{
- m_clip_box.x1 = x1;
- m_clip_box.y1 = y1;
- m_clip_box.x2 = x2;
- m_clip_box.y2 = y2;
+ m_clip_box.x1 = _x1;
+ m_clip_box.y1 = _y1;
+ m_clip_box.x2 = _x2;
+ m_clip_box.y2 = _y2;
m_clip_box.normalize();
}