Having a separate class which does nothing is no better than just having the base class do nothing. Remove LW_Null.

This commit is contained in:
Steve Checkoway
2007-05-08 12:14:21 +00:00
parent 2853fd09fc
commit 53b5a1f5e2
2 changed files with 6 additions and 8 deletions
@@ -12,8 +12,8 @@ public:
virtual RString Init() { return RString(); }
virtual ~LoadingWindow() { }
virtual void Paint() { };
virtual void SetText( RString str ) = 0;
virtual void Paint() { }
virtual void SetText( RString str ) { }
virtual void SetIcon( const RageSurface *pIcon ) { }
};