diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-25 01:29:54 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-25 01:53:06 +1000 |
commit | 8db04e71502686cb525d06dbd342119aac515824 (patch) | |
tree | af7b4808f5ccb4a18937499a3dda2599b074a1c4 /include/vcl/print.hxx | |
parent | 35dd2809c1e08bfe0e5d9b19a330a11609085155 (diff) |
VCL: Rename ImplReleaseGraphics to ReleaseGraphics, change to protected
Change-Id: Iff4198fdd51db787461b897f2d9d8b7640dbf772
Diffstat (limited to 'include/vcl/print.hxx')
-rw-r--r-- | include/vcl/print.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/print.hxx b/include/vcl/print.hxx index a51122e71bae..605c21a6d560 100644 --- a/include/vcl/print.hxx +++ b/include/vcl/print.hxx @@ -230,7 +230,6 @@ private: bool mbIsQueuePrinter; Link maErrorHdl; - void ImplReleaseFonts() SAL_OVERRIDE; SAL_DLLPRIVATE void ImplInitData(); SAL_DLLPRIVATE void ImplInit( SalPrinterQueueInfo* pInfo ); SAL_DLLPRIVATE void ImplInitDisplay( const Window* pWindow ); @@ -255,7 +254,8 @@ public: protected: virtual bool AcquireGraphics() const SAL_OVERRIDE; - virtual void ImplReleaseGraphics( bool bRelease = true ) SAL_OVERRIDE; + virtual void ReleaseGraphics( bool bRelease = true ) SAL_OVERRIDE; + virtual void ImplReleaseFonts() SAL_OVERRIDE; virtual long GetGradientStepCount( long nMinRect ) SAL_OVERRIDE; virtual bool UsePolyPolygonForComplexGradient() SAL_OVERRIDE; |