diff options
Diffstat (limited to 'src/ArrowButton.cc')
-rw-r--r-- | src/ArrowButton.cc | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/ArrowButton.cc b/src/ArrowButton.cc index dfcc05d..bc44393 100644 --- a/src/ArrowButton.cc +++ b/src/ArrowButton.cc | |||
@@ -1,5 +1,5 @@ | |||
1 | // ArrowButton.cc for Fluxbox Window Manager | 1 | // ArrowButton.cc for Fluxbox Window Manager |
2 | // Copyright (c) 2002 Henrik Kinnunen (fluxgen at users.sourceforge.net) | 2 | // Copyright (c) 2002-2003 Henrik Kinnunen (fluxgen at users.sourceforge.net) |
3 | // | 3 | // |
4 | // Permission is hereby granted, free of charge, to any person obtaining a | 4 | // Permission is hereby granted, free of charge, to any person obtaining a |
5 | // copy of this software and associated documentation files (the "Software"), | 5 | // copy of this software and associated documentation files (the "Software"), |
@@ -19,12 +19,10 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: ArrowButton.cc,v 1.1 2002/12/13 20:21:09 fluxgen Exp $ | 22 | // $Id: ArrowButton.cc,v 1.2 2003/04/27 01:54:18 fluxgen Exp $ |
23 | 23 | ||
24 | #include "ArrowButton.hh" | 24 | #include "ArrowButton.hh" |
25 | 25 | ||
26 | #include "App.hh" | ||
27 | |||
28 | ArrowButton::ArrowButton(ArrowButton::Type arrow_type, | 26 | ArrowButton::ArrowButton(ArrowButton::Type arrow_type, |
29 | FbTk::FbWindow &parent, | 27 | FbTk::FbWindow &parent, |
30 | int x, int y, | 28 | int x, int y, |
@@ -87,9 +85,9 @@ void ArrowButton::drawArrow() { | |||
87 | } | 85 | } |
88 | 86 | ||
89 | if (gc() != 0) { | 87 | if (gc() != 0) { |
90 | Display *disp = FbTk::App::instance()->display(); | 88 | window().fillPolygon(gc(), |
91 | XFillPolygon(disp, window().window(), gc(), | 89 | pts, 3, |
92 | pts, 3, Convex, CoordModePrevious); | 90 | Convex, CoordModePrevious); |
93 | } | 91 | } |
94 | } | 92 | } |
95 | 93 | ||