diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-03-10 19:05:26 +1100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-10 06:47:16 -0500 |
commit | 4a1bb12034fc76b2d26291c373da7309bc26f9bc (patch) | |
tree | d63d070d8d59c761e81f73da62bf503ccd07d510 /include | |
parent | f8c8d6131334e4723a50147348a6e7d049be2f89 (diff) |
Stick to function naming conventions in OutputDevice
Function name changes for consistency in OutputDevice:
* impPaintLineGeometryWithEvtlExpand ->
ImplPaintLineGeometryWithEvtlExpand
* ImpDrawPolyPolygonWithB2DPolyPolygon ->
ImplDrawPolyPolygonWithB2DPolyPolygon
* ImpTryDrawPolyLineDirect -> ImplTryDrawPolyLineDirect
* ImpDrawPolyLineWithLineInfo -> ImplDrawPolyLineWithLineInfo
Change-Id: Iae1ce07036856902259cef0a05afb57fd657325e
Reviewed-on: https://gerrit.libreoffice.org/8509
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/outdev.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx index 6ee194bf5a41..9188568d2df8 100644 --- a/include/vcl/outdev.hxx +++ b/include/vcl/outdev.hxx @@ -638,11 +638,11 @@ public: // #i101491# // Helper which holds the old line geometry creation and is extended to use AA when // switched on. Advantage is that line geometry is only temporarily used for paint - SAL_DLLPRIVATE void ImpDrawPolyLineWithLineInfo(const Polygon& rPoly, const LineInfo& rLineInfo); + SAL_DLLPRIVATE void ImplDrawPolyLineWithLineInfo(const Polygon& rPoly, const LineInfo& rLineInfo); // #i101491# // Helper who tries to use SalGDI's DrawPolyLine direct and returns it's bool. Contains no AA check. - SAL_DLLPRIVATE bool ImpTryDrawPolyLineDirect( + SAL_DLLPRIVATE bool ImplTryDrawPolyLineDirect( const basegfx::B2DPolygon& rB2DPolygon, double fLineWidth = 0.0, double fTransparency = 0.0, @@ -650,7 +650,7 @@ public: css::drawing::LineCap eLineCap = css::drawing::LineCap_BUTT); // Helper for line geometry paint with support for graphic expansion (pattern and fat_to_area) - void impPaintLineGeometryWithEvtlExpand(const LineInfo& rInfo, basegfx::B2DPolyPolygon aLinePolyPolygon); + void ImplPaintLineGeometryWithEvtlExpand(const LineInfo& rInfo, basegfx::B2DPolyPolygon aLinePolyPolygon); ///@} /** @name Polygon functions @@ -662,7 +662,7 @@ public: // #i101491# // Helper who implements the DrawPolyPolygon functionality for basegfx::B2DPolyPolygon // without MetaFile processing - SAL_DLLPRIVATE void ImpDrawPolyPolygonWithB2DPolyPolygon(const basegfx::B2DPolyPolygon& rB2DPolyPoly); + SAL_DLLPRIVATE void ImplDrawPolyPolygonWithB2DPolyPolygon(const basegfx::B2DPolyPolygon& rB2DPolyPoly); ///@} |