add const qualifiers

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52414 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-03-09 16:24:26 +00:00
parent 1fee6e2577
commit 328f5751e8
193 changed files with 2525 additions and 2513 deletions

View File

@@ -196,7 +196,7 @@ public:
/**
Returns a pointer to the active MDI child, if there is one.
*/
wxMDIChildFrame* GetActiveChild();
wxMDIChildFrame* GetActiveChild() const;
/**
This gets the size of the frame 'client area' in pixels.
@@ -213,28 +213,28 @@ public:
@see GetToolBar(), SetToolBar(),
wxMDIClientWindow
*/
virtual void GetClientSize(int* width, int* height);
virtual void GetClientSize(int* width, int* height) const;
/**
Returns a pointer to the client window.
@see OnCreateClient()
*/
wxMDIClientWindow* GetClientWindow();
wxMDIClientWindow* GetClientWindow() const;
/**
Returns the window being used as the toolbar for this frame.
@see SetToolBar()
*/
virtual wxWindow* GetToolBar();
virtual wxWindow* GetToolBar() const;
/**
Returns the current Window menu (added by wxWidgets to the menubar). This
function
is available under Windows only.
*/
wxMenu* GetWindowMenu();
wxMenu* GetWindowMenu() const;
/**
Override this to return a different kind of client window. If you override this