remove empty functions which are no longer virtual anyways

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15636 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus 2005-12-21 11:23:37 +00:00
parent 28f0e47c1a
commit 3ca8cdfc07
2 changed files with 0 additions and 26 deletions

View File

@ -49,24 +49,3 @@ OffscreenWindowLayer::~OffscreenWindowLayer()
delete fHWInterface; 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
}

View File

@ -22,11 +22,6 @@ class OffscreenWindowLayer : public WindowLayer {
::ServerWindow* window); ::ServerWindow* window);
virtual ~OffscreenWindowLayer(); 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 virtual bool IsOffscreenWindow() const
{ return true; } { return true; }