Skip to content

Commit

Permalink
Add wxVertical const
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicletz committed Dec 7, 2023
1 parent f8b54ce commit f7ef995
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/desktop/wx.ex
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule Desktop.Wx do
Elixir version of the constants found in the wx.hrl file, reduced to what is needed in this sample only.
"""
@constants ~w(
ID_ANY ID_EXIT DEFAULT_FRAME_STYLE NO_BORDER EXPAND HORIZONTAL
ID_ANY ID_EXIT DEFAULT_FRAME_STYLE NO_BORDER EXPAND HORIZONTAL VERTICAL
ITEM_SEPARATOR ITEM_NORMAL ITEM_CHECK ITEM_RADIO
ICON_WARNING ICON_ERROR ICON_QUESTION ICON_INFORMATION
MAJOR_VERSION MINOR_VERSION RELEASE_NUMBER IMAGE_QUALITY_HIGH )
Expand Down
3 changes: 2 additions & 1 deletion src/desktop_wx.erl
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@
get(wxMAJOR_VERSION) -> ?wxMAJOR_VERSION;
get(wxMINOR_VERSION) -> ?wxMINOR_VERSION;
get(wxNO_BORDER) -> ?wxNO_BORDER;
get(wxRELEASE_NUMBER) -> ?wxRELEASE_NUMBER.
get(wxRELEASE_NUMBER) -> ?wxRELEASE_NUMBER;
get(wxVERTICAL) -> ?wxVERTICAL.

0 comments on commit f7ef995

Please sign in to comment.