summaryrefslogtreecommitdiffstats
path: root/platform/uwp/os_uwp.h
diff options
context:
space:
mode:
Diffstat (limited to 'platform/uwp/os_uwp.h')
-rw-r--r--platform/uwp/os_uwp.h14
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();
};