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

@@ -86,12 +86,12 @@ public:
/**
Gets the maximum window size in the x direction.
*/
int GetMaximumSizeX();
int GetMaximumSizeX() const;
/**
Gets the maximum window size in the y direction.
*/
int GetMaximumSizeY();
int GetMaximumSizeY() const;
/**
Gets the minimum window size in the x direction.
@@ -101,7 +101,7 @@ public:
/**
Gets the minimum window size in the y direction.
*/
int GetMinimumSizeY();
int GetMinimumSizeY() const;
/**
Returns @true if a sash is visible on the given edge, @false otherwise.
@@ -111,7 +111,7 @@ public:
@see SetSashVisible()
*/
bool GetSashVisible(wxSashEdgePosition edge);
bool GetSashVisible(wxSashEdgePosition edge) const;
/**
Returns @true if the sash has a border, @false otherwise.
@@ -122,7 +122,7 @@ public:
@see SetSashBorder()
*/
bool HasBorder(wxSashEdgePosition edge);
bool HasBorder(wxSashEdgePosition edge) const;
/**
Sets the maximum window size in the x direction.
@@ -195,7 +195,7 @@ public:
resize was applied. It is
up to the application to set the window size if required.
*/
wxRect GetDragRect();
wxRect GetDragRect() const;
/**
Returns the status of the sash: one of wxSASH_STATUS_OK,
@@ -203,11 +203,11 @@ public:
If the drag caused the notional bounding box of the window to flip over, for
example, the drag will be out of rage.
*/
wxSashDragStatus GetDragStatus();
wxSashDragStatus GetDragStatus() const;
/**
Returns the dragged edge. The return value is one of wxSASH_TOP, wxSASH_RIGHT,
wxSASH_BOTTOM, wxSASH_LEFT.
*/
wxSashEdgePosition GetEdge();
wxSashEdgePosition GetEdge() const;
};