diff options
author | fluxgen <fluxgen> | 2002-10-29 15:52:44 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2002-10-29 15:52:44 (GMT) |
commit | 4490ea459084752c9e4ae28cd91d5bf5debef290 (patch) | |
tree | c8b14b490464ab99e9e4546ae52ae4c935253235 /src | |
parent | 14a685819fb0213808dceb95a30357d7f1a99254 (diff) | |
download | fluxbox-4490ea459084752c9e4ae28cd91d5bf5debef290.zip fluxbox-4490ea459084752c9e4ae28cd91d5bf5debef290.tar.bz2 |
const
Diffstat (limited to 'src')
-rw-r--r-- | src/IconBar.hh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/IconBar.hh b/src/IconBar.hh index 428fbf0..e89d498 100644 --- a/src/IconBar.hh +++ b/src/IconBar.hh | |||
@@ -19,7 +19,7 @@ | |||
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: IconBar.hh,v 1.7 2002/08/04 15:55:13 fluxgen Exp $ | 22 | // $Id: IconBar.hh,v 1.8 2002/10/29 15:52:44 fluxgen Exp $ |
23 | 23 | ||
24 | #ifndef ICONBAR_HH | 24 | #ifndef ICONBAR_HH |
25 | #define ICONBAR_HH | 25 | #define ICONBAR_HH |
@@ -60,10 +60,11 @@ public: | |||
60 | Window delIcon(FluxboxWindow *fluxboxwin); | 60 | Window delIcon(FluxboxWindow *fluxboxwin); |
61 | void buttonPressEvent(XButtonEvent *be); | 61 | void buttonPressEvent(XButtonEvent *be); |
62 | FluxboxWindow *findWindow(Window w); | 62 | FluxboxWindow *findWindow(Window w); |
63 | IconBarObj *findIcon(FluxboxWindow *fluxboxwin); | 63 | IconBarObj *findIcon(FluxboxWindow * const fluxboxwin); |
64 | const IconBarObj *findIcon(const FluxboxWindow * const fluxboxwin) const; | ||
64 | void exposeEvent(XExposeEvent *ee); | 65 | void exposeEvent(XExposeEvent *ee); |
65 | 66 | ||
66 | void draw(IconBarObj *obj, int width); | 67 | void draw(const IconBarObj * const obj, int width) const; |
67 | private: | 68 | private: |
68 | typedef std::list<IconBarObj *> IconList; | 69 | typedef std::list<IconBarObj *> IconList; |
69 | 70 | ||