diff options
author | George Marques <george@gmarqu.es> | 2016-11-02 19:22:49 -0200 |
---|---|---|
committer | George Marques <george@gmarqu.es> | 2016-11-03 14:51:08 -0200 |
commit | 411faaa6f478f837aa40893eaadf67e2b5d57cec (patch) | |
tree | d75d928bb9d244edd7b33f04c8ad31e840802bfe /platform/uwp/os_uwp.h | |
parent | b113c7b7a3e63581ae268b0ae7f827d55e381b82 (diff) |
Rename remaining WinRT references to UWP
Diffstat (limited to 'platform/uwp/os_uwp.h')
-rw-r--r-- | platform/uwp/os_uwp.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/platform/uwp/os_uwp.h b/platform/uwp/os_uwp.h index 98a3cc54cc..47eb095e11 100644 --- a/platform/uwp/os_uwp.h +++ b/platform/uwp/os_uwp.h @@ -26,8 +26,8 @@ /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef OSWinrt_H -#define OSWinrt_H +#ifndef OSUWP_H +#define OSUWP_H #include "os/input.h" #include "os/os.h" @@ -60,7 +60,7 @@ /** @author Juan Linietsky <reduzio@gmail.com> */ -class OSWinrt : public OS { +class OSUWP : public OS { public: @@ -137,7 +137,7 @@ private: InputDefault *input; - JoystickWinrt^ joystick; + JoystickUWP^ joystick; Windows::System::Display::DisplayRequest^ display_request; @@ -159,7 +159,7 @@ private: internal: ManagedType() { alert_close_handle = false; } - property OSWinrt* os; + property OSUWP* os; }; ManagedType^ managed_object; Windows::Devices::Sensors::Accelerometer^ accelerometer; @@ -273,8 +273,8 @@ public: void queue_key_event(KeyEvent &p_event); - OSWinrt(); - ~OSWinrt(); + OSUWP(); + ~OSUWP(); }; |