Skip to content

Commit

Permalink
Merge pull request #176 from rmpowell77/dev/issue_175_unique_ptr_memory
Browse files Browse the repository at this point in the history
Issue #175: Using unique_ptr without including memory
  • Loading branch information
rmpowell77 authored Dec 30, 2023
2 parents 7a3137d + 89456a9 commit 6e44794
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 10 deletions.
13 changes: 3 additions & 10 deletions LATEST_RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,8 @@
# wxUI release notes for v0.1.9
# wxUI release notes for v0.1.10

Bugs addressed in this release:

Other changes:
* [#175](../../issues/175) Using unique_ptr without including memory

* [#144](../../issues/144) RadioButtons are too easy to lay out incorrectly because of withStyle
* [#156](../../issues/156) We should be able to take ranges of std::string for choices, list boxes, etc
* [#157](../../issues/157) Text needs withWrap
* [#161](../../issues/161) Need to have a setEnabled for Widgets
* [#164](../../issues/164) Add ForEach, which would allow a list of Controllers to be added
* [#166](../../issues/166) Special Functions for Splitter
* [#167](../../issues/167) VSplitter and HSplitter proxy's are hard to use
* [#171](../../issues/171) Need a wxGauge
Other changes:

1 change: 1 addition & 0 deletions include/wxUI/BindInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ SOFTWARE.
*/
#pragma once

#include <memory>
#include <optional>
#include <wx/sizer.h>

Expand Down
1 change: 1 addition & 0 deletions include/wxUI/Generic.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ SOFTWARE.
#pragma once

#include "Widget.h"
#include <stdexcept>
#include <variant>
#include <wx/sizer.h>
#include <wx/statbox.h>
Expand Down
1 change: 1 addition & 0 deletions include/wxUI/Widget.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ SOFTWARE.

#include "BindInfo.h"
#include <optional>
#include <stdexcept>
#include <wx/sizer.h>

namespace wxUI::details {
Expand Down

0 comments on commit 6e44794

Please sign in to comment.