1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-06-19 07:11:33 +00:00

Merge branch 'dead_code2' into 'master'

Remove dead code

See merge request OpenMW/openmw!4454
This commit is contained in:
psi29a 2024-11-17 10:49:01 +00:00
commit ebc7ecd540
6 changed files with 0 additions and 18 deletions

View file

@ -317,8 +317,6 @@ namespace MWGui
const Translation::Storage& getTranslationDataStorage() const override; const Translation::Storage& getTranslationDataStorage() const override;
void onSoulgemDialogButtonPressed(int button);
bool getCursorVisible() override; bool getCursorVisible() override;
/// Call when mouse cursor or buttons are used. /// Call when mouse cursor or buttons are used.

View file

@ -104,16 +104,6 @@ namespace MWInput
bool controlsDisabled() override { return mControlsDisabled; } bool controlsDisabled() override { return mControlsDisabled; }
private: private:
void convertMousePosForMyGUI(int& x, int& y);
void handleGuiArrowKey(int action);
void quickKey(int index);
void showQuickKeysMenu();
void loadKeyDefaults(bool force = false);
void loadControllerDefaults(bool force = false);
bool mControlsDisabled; bool mControlsDisabled;
std::unique_ptr<SDLUtil::InputWrapper> mInputWrapper; std::unique_ptr<SDLUtil::InputWrapper> mInputWrapper;

View file

@ -280,7 +280,6 @@ namespace MWRender
void updateTextureFiltering(); void updateTextureFiltering();
void updateAmbient(); void updateAmbient();
void setFogColor(const osg::Vec4f& color); void setFogColor(const osg::Vec4f& color);
void updateThirdPersonViewMode();
struct WorldspaceChunkMgr struct WorldspaceChunkMgr
{ {

View file

@ -298,8 +298,6 @@ namespace MWSound
std::atomic<bool> mIsFinished; std::atomic<bool> mIsFinished;
void updateAll(bool local);
OpenAL_SoundStream(const OpenAL_SoundStream& rhs); OpenAL_SoundStream(const OpenAL_SoundStream& rhs);
OpenAL_SoundStream& operator=(const OpenAL_SoundStream& rhs); OpenAL_SoundStream& operator=(const OpenAL_SoundStream& rhs);

View file

@ -47,7 +47,6 @@ namespace Files
const std::filesystem::path& getUserConfigPath() const; const std::filesystem::path& getUserConfigPath() const;
const std::filesystem::path& getUserDataPath() const; const std::filesystem::path& getUserDataPath() const;
const std::filesystem::path& getLocalDataPath() const;
const std::filesystem::path& getInstallPath() const; const std::filesystem::path& getInstallPath() const;
const std::vector<std::filesystem::path>& getActiveConfigPaths() const { return mActiveConfigPaths; } const std::vector<std::filesystem::path>& getActiveConfigPaths() const { return mActiveConfigPaths; }

View file

@ -275,8 +275,6 @@ namespace Resource
SceneManager(const SceneManager&); SceneManager(const SceneManager&);
void operator=(const SceneManager&); void operator=(const SceneManager&);
}; };
std::string getFileExtension(const std::string& file);
} }
#endif #endif