diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2020-03-03 12:46:19 +0100 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2020-03-04 11:31:45 +0100 |
commit | ec85ed21a960a198a01778cdb89a91fabcb5d0c0 (patch) | |
tree | 93e9b167b5a986b49dc7f0533d2f24cb86a7602e /include | |
parent | 3e0c5113a298d3ded705706193f8b6b909027b2f (diff) |
vcl: rename GetContext to GetReaderContext in Graphic
GetContext is a very generic method name, so rename it to a more
specific GetReaderContext name. It is easier to find references.
Change-Id: Ieb05ac63080598357107dc3e485b481910cd79cc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89929
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/graph.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/graph.hxx b/include/vcl/graph.hxx index c1fadb49d9cb..6986f5f9b0b1 100644 --- a/include/vcl/graph.hxx +++ b/include/vcl/graph.hxx @@ -182,8 +182,8 @@ public: public: - std::shared_ptr<GraphicReader>& GetContext(); - void SetContext( const std::shared_ptr<GraphicReader> &pReader ); + std::shared_ptr<GraphicReader>& GetReaderContext(); + void SetReaderContext( const std::shared_ptr<GraphicReader> &pReader ); void SetDummyContext(bool value); bool IsDummyContext() const; private: |