Warning fix.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28601 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -223,7 +223,7 @@ public:
|
|||||||
panel does not change the order in which they are indexed. So it is safe enough to keep a reference
|
panel does not change the order in which they are indexed. So it is safe enough to keep a reference
|
||||||
to the panel by number. */
|
to the panel by number. */
|
||||||
wxFoldPanel Item(size_t i) {
|
wxFoldPanel Item(size_t i) {
|
||||||
wxCHECK(i >= 0 && i < GetCount(), wxFoldPanel(0));
|
wxCHECK((int)i >= 0 && i < GetCount(), wxFoldPanel(0));
|
||||||
return wxFoldPanel(_panels.Item(i));
|
return wxFoldPanel(_panels.Item(i));
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user