aboutsummaryrefslogtreecommitdiffstats
path: root/lib/wx/include
diff options
context:
space:
mode:
authorDan Gudmundsson <[email protected]>2015-01-21 15:51:01 +0100
committerDan Gudmundsson <[email protected]>2015-03-27 09:55:50 +0100
commit5ce5cc6c49ac06d282519494e8047498a7d985e0 (patch)
tree8d4266078eb06c285f39123a3f04da39a81c06f5 /lib/wx/include
parent29049ab976919460356b047baa854aadee780f5a (diff)
downloadotp-5ce5cc6c49ac06d282519494e8047498a7d985e0.tar.gz
otp-5ce5cc6c49ac06d282519494e8047498a7d985e0.tar.bz2
otp-5ce5cc6c49ac06d282519494e8047498a7d985e0.zip
wx: Fix variable cursor constants
Fix cursor constants that changes with OS and wxWidgets releases.
Diffstat (limited to 'lib/wx/include')
-rw-r--r--lib/wx/include/wx.hrl8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/wx/include/wx.hrl b/lib/wx/include/wx.hrl
index 348daf64ce..9b913c7c00 100644
--- a/lib/wx/include/wx.hrl
+++ b/lib/wx/include/wx.hrl
@@ -1,7 +1,7 @@
%%
%% %CopyrightBegin%
%%
-%% Copyright Ericsson AB 2008-2014. All Rights Reserved.
+%% Copyright Ericsson AB 2008-2015. All Rights Reserved.
%%
%% The contents of this file are subject to the Erlang Public License,
%% Version 1.1, (the "License"); you may not use this file except in
@@ -1883,9 +1883,9 @@
-define(wxCURSOR_WAIT, 24).
-define(wxCURSOR_WATCH, 25).
-define(wxCURSOR_BLANK, 26).
--define(wxCURSOR_DEFAULT, 27).
--define(wxCURSOR_ARROWWAIT, 28).
--define(wxCURSOR_MAX, 29).
+-define(wxCURSOR_DEFAULT, wxe_util:get_const(wxCURSOR_DEFAULT)).
+-define(wxCURSOR_ARROWWAIT, wxe_util:get_const(wxCURSOR_ARROWWAIT)).
+-define(wxCURSOR_MAX, wxe_util:get_const(wxCURSOR_MAX)).
% From "generic_2laywin.h"
-define(wxLAYOUT_QUERY, 256).
-define(wxLAYOUT_MRU_LENGTH, 16).