diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-23 00:57:50 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-23 07:23:42 +1000 |
commit | 665bc42d7504c3896a485c8bab17b8eff7d119df (patch) | |
tree | 736a10aaf3a5a2cc2bf51d02763309222b2ec190 /include/vcl/print.hxx | |
parent | 704e5abbe99b41859bb02d816ea1dc439180a5f6 (diff) |
Rename VCL's ImplInitGraphics to AcquireGraphics
Turns out, we don't try to initialize a graphics context, much less
*acquire* one. e.g. Window instances can have many frames (subwindows),
of which one some are really being used at any time so we try to
"steal" one of the graphics contexts from the frame to use ourself,
later on that frame will steal it from someone else, etc.
Change-Id: I66d5dbb7015301bc2d2be51627061c91e1f2ee5d
Diffstat (limited to 'include/vcl/print.hxx')
-rw-r--r-- | include/vcl/print.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/print.hxx b/include/vcl/print.hxx index b02f739d4451..58651d520027 100644 --- a/include/vcl/print.hxx +++ b/include/vcl/print.hxx @@ -230,7 +230,7 @@ private: bool mbIsQueuePrinter; Link maErrorHdl; - bool ImplInitGraphics() const SAL_OVERRIDE; + bool AcquireGraphics() const SAL_OVERRIDE; void ImplReleaseGraphics( bool bRelease = true ) SAL_OVERRIDE; void ImplReleaseFonts() SAL_OVERRIDE; SAL_DLLPRIVATE void ImplInitData(); |