Remove redundant virtual functions

pull/3227/head
elsid 3 years ago
parent 5d006ef14b
commit 8473336b06
No known key found for this signature in database
GPG Key ID: B845CB9FEE18AB40

@ -53,8 +53,6 @@ namespace MWBase
///
/// \param bypass Skip new game mechanics.
virtual void endGame() = 0;
virtual void resumeGame() = 0;
virtual void deleteGame (const MWState::Character *character, const MWState::Slot *slot) = 0;

@ -282,8 +282,6 @@ namespace MWBase
/// Warning: do not use MyGUI::InputManager::setKeyFocusWidget directly. Instead use this.
virtual void setKeyFocusWidget (MyGUI::Widget* widget) = 0;
virtual void loadUserFonts() = 0;
virtual Loading::Listener* getLoadingScreen() = 0;
/// Should the cursor be visible?

@ -623,7 +623,6 @@ namespace MWBase
virtual bool isPlayerInJail() const = 0;
virtual void rest(double hours) = 0;
virtual void rechargeItems(double duration, bool activeOnly) = 0;
virtual void setPlayerTraveling(bool traveling) = 0;
virtual bool isPlayerTraveling() const = 0;

@ -142,7 +142,7 @@ namespace MWGui
void setStore (const MWWorld::ESMStore& store);
void initUI();
void loadUserFonts() override;
void loadUserFonts();
Loading::Listener* getLoadingScreen() override;

@ -46,7 +46,7 @@ namespace MWState
///
/// \param bypass Skip new game mechanics.
void endGame() override;
void endGame();
void resumeGame() override;

@ -587,7 +587,7 @@ namespace MWWorld
///< check if the player is allowed to rest
void rest(double hours) override;
void rechargeItems(double duration, bool activeOnly) override;
void rechargeItems(double duration, bool activeOnly);
/// \todo Probably shouldn't be here
MWRender::Animation* getAnimation(const MWWorld::Ptr &ptr) override;

Loading…
Cancel
Save