git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56861
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
- wxAuiPaneInfo& SetFlag(unsigned int flag, bool option_state)
+ wxAuiPaneInfo& SetFlag(int flag, bool option_state)
{
if (option_state)
state |= flag;
{
if (option_state)
state |= flag;
- bool HasFlag(unsigned int flag) const
+ bool HasFlag(int flag) const
{
return (state & flag) != 0;
}
{
return (state & flag) != 0;
}
This method is used to specify wxAuiManager's settings flags. @a flags
specifies options which allow the frame management behavior to be modified.
*/
This method is used to specify wxAuiManager's settings flags. @a flags
specifies options which allow the frame management behavior to be modified.
*/
- void SetFlags(unsigned int flags);
+ void SetFlags(int flags);
/**
Called to specify the frame or window which is to be managed by wxAuiManager.
/**
Called to specify the frame or window which is to be managed by wxAuiManager.
bool HasCloseButton() const;
/**
bool HasCloseButton() const;
/**
- HasFlag() returns @true if the the property specified by flag is active for the
- pane.
+ HasFlag() returns @true if the property specified by flag is active for
+ the pane.
- bool HasFlag(unsigned int flag) const;
+ bool HasFlag(int flag) const;
/**
HasGripper() returns @true if the pane displays a gripper.
/**
HasGripper() returns @true if the pane displays a gripper.