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
This commit is contained in:
Vladimir Glazounov 2008-08-19 23:38:25 +00:00
parent 2feb465382
commit 819a799b27

View file

@ -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 ));