diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2021-05-12 18:13:09 +1000 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2021-08-27 13:28:43 +0200 |
commit | ec52161eb5bd71ee5bcb1dd6cf0cb596da39fa48 (patch) | |
tree | 241a0eacde6552a194970348b0b02619101e36ae /include | |
parent | 1864e6353179678a2ca1a175c203fd9e0cc5a580 (diff) |
vcl: move OutputDevice fill functions to fill.cxx
Add unit test for SetFillColor(), IsFillColor() and GetFillColor().
Change-Id: I64b3b15d6c6a0062af716ecc02d0414ae8a9f134
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115461
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@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 b529763099ca..7d4a7e533356 100644 --- a/include/vcl/outdev.hxx +++ b/include/vcl/outdev.hxx @@ -506,8 +506,8 @@ public: void SetFillColor(); void SetFillColor( const Color& rColor ); - const Color& GetFillColor() const { return maFillColor; } - bool IsFillColor() const { return mbFillColor; } + const Color& GetFillColor() const; + bool IsFillColor() const; void SetBackground(); void SetBackground( const Wallpaper& rBackground ); |