diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-11-10 23:16:44 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-11-11 01:58:35 +0000 |
commit | b7c4c78a097f76314982d8c1a9f2e58df95080a1 (patch) | |
tree | eaaed4266b71b4e54d9c8a5176180669e7fa96f0 /include | |
parent | df2dbdc283a5af85e7250e4ba94ba8dfef96932b (diff) |
vcl: make ImplDrawOutDevDirect a protected function in OutputDevice
Also renamed it to drawOutDevDirect. We're making it protected because I'm
about to move ImplDrawFrameDev() from OutputDevice to Window, where it should
be.
Change-Id: I7a94304cdc48b858c057749532de66086eeb5020
Reviewed-on: https://gerrit.libreoffice.org/12339
Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com>
Tested-by: Chris Sherlock <chris.sherlock79@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/outdev.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx index a977936d20bb..c8990171e3e9 100644 --- a/include/vcl/outdev.hxx +++ b/include/vcl/outdev.hxx @@ -518,9 +518,9 @@ protected: virtual void CopyDeviceArea( SalTwoRect& aPosAry, sal_uInt32 nFlags); -private: + SAL_DLLPRIVATE void drawOutDevDirect ( const OutputDevice* pSrcDev, SalTwoRect& rPosAry ); - SAL_DLLPRIVATE void ImplDrawOutDevDirect ( const OutputDevice* pSrcDev, SalTwoRect& rPosAry ); +private: // not implemented; to detect misuses of DrawOutDev(...OutputDevice&); SAL_DLLPRIVATE void DrawOutDev( const Point&, const Size&, const Point&, const Size&, const Printer&) SAL_DELETED_FUNCTION; |