summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-08-22 01:03:08 +0000
committerDana Jansens <danakj@orodu.net>2002-08-22 01:03:08 +0000
commit4d0f46e554d1f0e379f411aa5f8f0ad140fd3237 (patch)
tree1fc91bf59d5c5412c9b651c84a9cf08d75ee300a
parenta04483857afd7a447c9b89e2e8cf23f971ce5b06 (diff)
dont use __ for variables.. its illegal. (thanks ppl for the patch.)
-rw-r--r--src/Util.cc56
1 files changed, 28 insertions, 28 deletions
diff --git a/src/Util.cc b/src/Util.cc
index 6e2ea152..90135447 100644
--- a/src/Util.cc
+++ b/src/Util.cc
@@ -61,53 +61,53 @@ extern "C" {
using std::string;
-void Rect::setX(int __x) {
- _x2 += __x - _x1;
- _x1 = __x;
+void Rect::setX(int x) {
+ _x2 += x - _x1;
+ _x1 = x;
}
-void Rect::setY(int __y)
+void Rect::setY(int y)
{
- _y2 += __y - _y1;
- _y1 = __y;
+ _y2 += y - _y1;
+ _y1 = y;
}
-void Rect::setPos(int __x, int __y) {
- _x2 += __x - _x1;
- _x1 = __x;
- _y2 += __y - _y1;
- _y1 = __y;
+void Rect::setPos(int x, int y) {
+ _x2 += x - _x1;
+ _x1 = x;
+ _y2 += y - _y1;
+ _y1 = y;
}
-void Rect::setWidth(unsigned int __w) {
- _x2 = __w + _x1 - 1;
+void Rect::setWidth(unsigned int w) {
+ _x2 = w + _x1 - 1;
}
-void Rect::setHeight(unsigned int __h) {
- _y2 = __h + _y1 - 1;
+void Rect::setHeight(unsigned int h) {
+ _y2 = h + _y1 - 1;
}
-void Rect::setSize(unsigned int __w, unsigned int __h) {
- _x2 = __w + _x1 - 1;
- _y2 = __h + _y1 - 1;
+void Rect::setSize(unsigned int w, unsigned int h) {
+ _x2 = w + _x1 - 1;
+ _y2 = h + _y1 - 1;
}
-void Rect::setRect(int __x, int __y, unsigned int __w, unsigned int __h) {
- *this = Rect(__x, __y, __w, __h);
+void Rect::setRect(int x, int y, unsigned int w, unsigned int h) {
+ *this = Rect(x, y, w, h);
}
-void Rect::setCoords(int __l, int __t, int __r, int __b) {
- _x1 = __l;
- _y1 = __t;
- _x2 = __r;
- _y2 = __b;
+void Rect::setCoords(int l, int t, int r, int b) {
+ _x1 = l;
+ _y1 = t;
+ _x2 = r;
+ _y2 = b;
}
@@ -141,9 +141,9 @@ bool Rect::intersects(const Rect &a) const {
}
-bool Rect::contains(int __x, int __y) const {
- return __x >= _x1 && __x <= _x2 &&
- __y >= _y1 && __y <= _y2;
+bool Rect::contains(int x, int y) const {
+ return x >= _x1 && x <= _x2 &&
+ y >= _y1 && y <= _y2;
}