summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/vcl/outdev.hxx4
-rw-r--r--vcl/source/outdev/fill.cxx4
2 files changed, 2 insertions, 6 deletions
diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx
index e2a4b4d190d1..a68655c073c8 100644
--- a/include/vcl/outdev.hxx
+++ b/include/vcl/outdev.hxx
@@ -507,8 +507,8 @@ public:
void SetFillColor();
void SetFillColor( const Color& rColor );
- const Color& GetFillColor() const;
- bool IsFillColor() const;
+ const Color& GetFillColor() const { return maFillColor; }
+ bool IsFillColor() const { return mbFillColor; }
void SetBackground();
void SetBackground( const Wallpaper& rBackground );
diff --git a/vcl/source/outdev/fill.cxx b/vcl/source/outdev/fill.cxx
index ea00990cbece..bbe6270632dc 100644
--- a/vcl/source/outdev/fill.cxx
+++ b/vcl/source/outdev/fill.cxx
@@ -26,10 +26,6 @@
#include <drawmode.hxx>
#include <salgdi.hxx>
-Color const& OutputDevice::GetFillColor() const { return maFillColor; }
-
-bool OutputDevice::IsFillColor() const { return mbFillColor; }
-
void OutputDevice::SetFillColor()
{