summaryrefslogtreecommitdiff
path: root/src/Util.cc
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-07-02 14:57:02 +0000
committerDana Jansens <danakj@orodu.net>2002-07-02 14:57:02 +0000
commit888c0bac90d4932d00dd7f7447ea52117aff6de0 (patch)
treedac16983de54810978e5f39506ea0fccd49937da /src/Util.cc
parentffa4c7f3414944869016497a4f560c24b9d8b3e9 (diff)
backing out all changes to make mouse button mapping's configurable
Diffstat (limited to 'src/Util.cc')
-rw-r--r--src/Util.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/Util.cc b/src/Util.cc
index 51477423..1b521aaf 100644
--- a/src/Util.cc
+++ b/src/Util.cc
@@ -141,12 +141,6 @@ bool Rect::intersects(const Rect &a) const {
}
-bool Rect::contains(int __x, int __y) const {
- return __x >= _x1 && __x <= _x2 &&
- __y >= _y1 && __y <= _y2;
-}
-
-
string expandTilde(const string& s) {
if (s[0] != '~') return s;