From 7ce9169d8d12184dc06aaa3ce019b7300aed7036 Mon Sep 17 00:00:00 2001 From: Caleb Butler Date: Sun, 3 Sep 2023 18:17:27 -0400 Subject: [PATCH] Remove deprecated method getOperatingSystemVersion --- include/IOSOperator.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/include/IOSOperator.h b/include/IOSOperator.h index 6e5768a..41f02e2 100644 --- a/include/IOSOperator.h +++ b/include/IOSOperator.h @@ -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;