mirror of
https://github.com/dhewm/dhewm3-sdk.git
synced 2025-03-30 06:01:00 +00:00
Fix -Woverloaded-virtual warnings
hides overloaded virtual function Fix member signatures of deriving classes to its super classes. Removes the unused idGameBustOutWindow::Activate() and the useless idMarkerWindow::GetWinVarByName().
This commit is contained in:
parent
06a5468d4d
commit
1851070be5
2 changed files with 2 additions and 2 deletions
|
@ -45,7 +45,7 @@ public:
|
|||
virtual const char * DefaultDefinition() const;
|
||||
virtual bool Parse( const char *text, const int textLength );
|
||||
virtual void FreeData( void );
|
||||
virtual void Print( void );
|
||||
virtual void Print( void ) const;
|
||||
};
|
||||
|
||||
#endif /* !__DECLENTITYDEF_H__ */
|
||||
|
|
|
@ -208,7 +208,7 @@ public:
|
|||
virtual void LoadModel() = 0;
|
||||
|
||||
// internal use
|
||||
virtual bool IsLoaded() = 0;
|
||||
virtual bool IsLoaded() const = 0;
|
||||
virtual void SetLevelLoadReferenced( bool referenced ) = 0;
|
||||
virtual bool IsLevelLoadReferenced() = 0;
|
||||
|
||||
|
|
Loading…
Reference in a new issue