big nono
This commit is contained in:
parent
1d897f432e
commit
6f0b72e8e5
1 changed files with 2 additions and 2 deletions
|
@ -28,9 +28,9 @@ public:
|
||||||
int x() const { return _x; }
|
int x() const { return _x; }
|
||||||
|
|
||||||
//! Changes the y value to the new value specified
|
//! Changes the y value to the new value specified
|
||||||
void setY(int x) { _x = x; }
|
void setY(int y) { _y = y; }
|
||||||
//! Returns the y value
|
//! Returns the y value
|
||||||
int y() const { return _x; }
|
int y() const { return _y; }
|
||||||
|
|
||||||
//! Changes the x and y values
|
//! Changes the x and y values
|
||||||
void setPoint(int x, int y) { _x = x; _y = y; }
|
void setPoint(int x, int y) { _x = x; _y = y; }
|
||||||
|
|
Loading…
Reference in a new issue