Take const pointer in wxAuiTabContainer::GetIdxFromWindow()
Allow passing const pointers to this function, as it doesn't need to modify them at all.
This commit is contained in:
parent
59463eced4
commit
8afbf79d02
3 changed files with 3 additions and 3 deletions
|
|
@ -140,7 +140,7 @@ public:
|
|||
bool TabHitTest(int x, int y, wxWindow** hit) const;
|
||||
bool ButtonHitTest(int x, int y, wxAuiTabContainerButton** hit) const;
|
||||
wxWindow* GetWindowFromIdx(size_t idx) const;
|
||||
int GetIdxFromWindow(wxWindow* page) const;
|
||||
int GetIdxFromWindow(const wxWindow* page) const;
|
||||
size_t GetPageCount() const;
|
||||
wxAuiNotebookPage& GetPage(size_t idx);
|
||||
const wxAuiNotebookPage& GetPage(size_t idx) const;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue