Remove deprecated method getOperatingSystemVersion

This commit is contained in:
Caleb Butler 2023-09-03 18:17:27 -04:00 committed by sfan5
parent ebdb2e410b
commit 7ce9169d8d
1 changed files with 0 additions and 7 deletions

View File

@ -18,13 +18,6 @@ public:
//! Get the current operation system version as string.
virtual const core::stringc& getOperatingSystemVersion() const = 0;
//! Get the current operation system version as string.
/** \deprecated Use getOperatingSystemVersion instead. This method will be removed in Irrlicht 1.9. */
_IRR_DEPRECATED_ const wchar_t* getOperationSystemVersion() const
{
return core::stringw(getOperatingSystemVersion()).c_str();
}
//! Copies text to the clipboard
//! \param text: text in utf-8
virtual void copyToClipboard(const c8* text) const = 0;