remove implementations from interface headers
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59622 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
778c9b9f49
commit
f18e1cf1f1
@ -43,8 +43,7 @@ public:
|
|||||||
Also note that GetStack().Last() is the top of the stack (i.e. the string shown
|
Also note that GetStack().Last() is the top of the stack (i.e. the string shown
|
||||||
in the status bar).
|
in the status bar).
|
||||||
*/
|
*/
|
||||||
const wxArrayString& GetStack() const
|
const wxArrayString& GetStack() const;
|
||||||
{ return m_arrStack; }
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -132,8 +131,7 @@ public:
|
|||||||
/**
|
/**
|
||||||
Returns the wxStatusBarPane representing the @a n-th field.
|
Returns the wxStatusBarPane representing the @a n-th field.
|
||||||
*/
|
*/
|
||||||
const wxStatusBarPane& GetField(int n) const
|
const wxStatusBarPane& GetField(int n) const;
|
||||||
{ return m_panes[n]; }
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Returns the string associated with a status bar field.
|
Returns the string associated with a status bar field.
|
||||||
@ -154,24 +152,21 @@ public:
|
|||||||
|
|
||||||
See wxStatusBarPane::GetStack() for more info.
|
See wxStatusBarPane::GetStack() for more info.
|
||||||
*/
|
*/
|
||||||
const wxArrayString& GetStatusStack(int n) const
|
const wxArrayString& GetStatusStack(int n) const;
|
||||||
{ return m_panes[n].GetStack(); }
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Returns the width of the @a n-th field.
|
Returns the width of the @a n-th field.
|
||||||
|
|
||||||
See wxStatusBarPane::GetWidth() for more info.
|
See wxStatusBarPane::GetWidth() for more info.
|
||||||
*/
|
*/
|
||||||
int GetStatusWidth(int n) const
|
int GetStatusWidth(int n) const;
|
||||||
{ return m_panes[n].GetWidth(); }
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Returns the style of the @a n-th field.
|
Returns the style of the @a n-th field.
|
||||||
|
|
||||||
See wxStatusBarPane::GetStyle() for more info.
|
See wxStatusBarPane::GetStyle() for more info.
|
||||||
*/
|
*/
|
||||||
int GetStatusStyle(int n) const
|
int GetStatusStyle(int n) const;
|
||||||
{ return m_panes[n].GetStyle(); }
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Sets the field text to the top of the stack, and pops the stack of saved
|
Sets the field text to the top of the stack, and pops the stack of saved
|
||||||
|
Loading…
Reference in New Issue
Block a user