summaryrefslogtreecommitdiff
path: root/vcl/workben
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2008-08-19 23:38:25 +0000
committerVladimir Glazounov <vg@openoffice.org>2008-08-19 23:38:25 +0000
commit819a799b2745bef2534026c619bad6f1697e424d (patch)
treefb82cec6aa379e5641140c71ed48cef11069fd36 /vcl/workben
parent2feb46538208cd4bf66978cfa75f6b22b1b6a83c (diff)
INTEGRATION: CWS aw033 (1.4.22); FILE MERGED
2008/05/14 15:06:40 aw 1.4.22.4: RESYNC: (1.6-1.7); FILE MERGED 2007/08/09 20:38:05 aw 1.4.22.3: RESYNC: (1.5-1.6); FILE MERGED 2007/06/27 18:51:13 aw 1.4.22.2: RESYNC: (1.4-1.5); FILE MERGED 2007/03/28 08:48:12 hdu 1.4.22.1: #i75669# remove ambiguity to now overloaded methods
Diffstat (limited to 'vcl/workben')
-rwxr-xr-xvcl/workben/outdevgrind.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/vcl/workben/outdevgrind.cxx b/vcl/workben/outdevgrind.cxx
index 395f871b565b..a92da7c05531 100755
--- a/vcl/workben/outdevgrind.cxx
+++ b/vcl/workben/outdevgrind.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: outdevgrind.cxx,v $
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
* This file is part of OpenOffice.org.
*
@@ -235,7 +235,8 @@ void setupMethodStubs( functor_vector_type& res )
add(res,
"DrawPolygon",
boost::bind(
- &OutputDevice::DrawPolygon,
+ (void (OutputDevice::*)( const Polygon& ))
+ &OutputDevice::DrawPolygon,
_1,
aPoly ));
@@ -243,7 +244,8 @@ void setupMethodStubs( functor_vector_type& res )
add(res,
"DrawPolyPolygon",
boost::bind(
- &OutputDevice::DrawPolyPolygon,
+ (void (OutputDevice::*)( const PolyPolygon& ))
+ &OutputDevice::DrawPolyPolygon,
_1,
aPolyPoly ));