Make some member functions const
This commit is contained in:
@@ -1154,7 +1154,7 @@ public:
|
||||
virtual void EnableOffset(bool enable = true);
|
||||
|
||||
void DisableOffset();
|
||||
bool OffsetEnabled();
|
||||
bool OffsetEnabled() const;
|
||||
|
||||
/** @}
|
||||
*/
|
||||
|
@@ -84,14 +84,14 @@ public:
|
||||
wxEdge GetMyEdge() const;
|
||||
void SetEdge(wxEdge which);
|
||||
void SetValue(int v);
|
||||
int GetMargin();
|
||||
int GetMargin() const;
|
||||
void SetMargin(int m);
|
||||
int GetValue() const;
|
||||
int GetPercent() const;
|
||||
int GetOtherEdge() const;
|
||||
bool GetDone() const;
|
||||
void SetDone(bool d);
|
||||
wxRelationship GetRelationship();
|
||||
wxRelationship GetRelationship() const;
|
||||
void SetRelationship(wxRelationship r);
|
||||
|
||||
// Reset constraint if it mentions otherWin
|
||||
|
@@ -305,12 +305,12 @@ public:
|
||||
/**
|
||||
Returns the exist status.
|
||||
*/
|
||||
int GetExitCode();
|
||||
int GetExitCode() const;
|
||||
|
||||
/**
|
||||
Returns the process id.
|
||||
*/
|
||||
int GetPid();
|
||||
int GetPid() const;
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user