diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-27 19:38:55 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-27 20:53:30 +1000 |
commit | bb5d1006bd97dca3311d2960aec11595feae3b09 (patch) | |
tree | 19e83fca9c0ac93ab7c631221db5f0625916c9ab /include/vcl/outdev.hxx | |
parent | ffd55ff0b919a982f54db558b2341309bbabf0b9 (diff) |
VCL: rename OutputDevice::ImplInitFillColor and make it private
Change-Id: I01c0974d3a2f79cf3c6b9730ea306dcd49927a3c
Diffstat (limited to 'include/vcl/outdev.hxx')
-rw-r--r-- | include/vcl/outdev.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx index fb179639d880..335b8f7b5873 100644 --- a/include/vcl/outdev.hxx +++ b/include/vcl/outdev.hxx @@ -441,8 +441,6 @@ private: */ ///@{ public: - SAL_DLLPRIVATE void ImplInitFillColor(); - void EnableOutput( bool bEnable = true ); bool IsOutputEnabled() const { return mbOutput; } bool IsDeviceOutput() const { return mbDevOutput; } @@ -488,6 +486,9 @@ public: void SetFont( const Font& rNewFont ); const Font& GetFont() const { return maFont; } +private: + void InitFillColor(); + ///@} /** @name Clipping functions |