diff --git a/src/servers/app/OffscreenWindowLayer.cpp b/src/servers/app/OffscreenWindowLayer.cpp index 70afb81fdb..2c0d38e0ef 100644 --- a/src/servers/app/OffscreenWindowLayer.cpp +++ b/src/servers/app/OffscreenWindowLayer.cpp @@ -49,24 +49,3 @@ OffscreenWindowLayer::~OffscreenWindowLayer() delete fHWInterface; } - -void -OffscreenWindowLayer::Draw(const BRect &r) -{ - // Nothing to do here -} - - -void -OffscreenWindowLayer::MoveBy(float x, float y) -{ - // Nothing to do here -} - - -void -OffscreenWindowLayer::ResizeBy(float x, float y) -{ - // Nothing to do here -} - diff --git a/src/servers/app/OffscreenWindowLayer.h b/src/servers/app/OffscreenWindowLayer.h index 8cbe3e7936..4484a13c1d 100644 --- a/src/servers/app/OffscreenWindowLayer.h +++ b/src/servers/app/OffscreenWindowLayer.h @@ -22,11 +22,6 @@ class OffscreenWindowLayer : public WindowLayer { ::ServerWindow* window); virtual ~OffscreenWindowLayer(); - virtual void Draw(const BRect &r); - - virtual void MoveBy(float x, float y); - virtual void ResizeBy(float x, float y); - virtual bool IsOffscreenWindow() const { return true; }