diff options
author | fluxgen <fluxgen> | 2001-12-17 19:26:26 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2001-12-17 19:26:26 (GMT) |
commit | dbd3dfac7eb1de576aa66e25a8c765588c29b493 (patch) | |
tree | 13bcb94539a598f48ae4476dfe854d3688932e87 | |
parent | 31181406d0962b99ceff590adb4065e0e511f63b (diff) | |
download | fluxbox-dbd3dfac7eb1de576aa66e25a8c765588c29b493.zip fluxbox-dbd3dfac7eb1de576aa66e25a8c765588c29b493.tar.bz2 |
Moved typedefs into class IconBar
-rw-r--r-- | src/IconBar.hh | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/IconBar.hh b/src/IconBar.hh index f6b7509..4bd0a8e 100644 --- a/src/IconBar.hh +++ b/src/IconBar.hh | |||
@@ -25,8 +25,6 @@ | |||
25 | #include "Window.hh" | 25 | #include "Window.hh" |
26 | #include "LinkedList.hh" | 26 | #include "LinkedList.hh" |
27 | 27 | ||
28 | class Fluxbox; | ||
29 | |||
30 | class IconBarObj | 28 | class IconBarObj |
31 | { | 29 | { |
32 | public: | 30 | public: |
@@ -39,9 +37,6 @@ private: | |||
39 | FluxboxWindow *m_fluxboxwin; | 37 | FluxboxWindow *m_fluxboxwin; |
40 | }; | 38 | }; |
41 | 39 | ||
42 | typedef LinkedList<IconBarObj> IconList; | ||
43 | typedef LinkedListIterator<IconBarObj> IconListIterator; | ||
44 | |||
45 | class IconBar | 40 | class IconBar |
46 | { | 41 | { |
47 | public: | 42 | public: |
@@ -55,6 +50,9 @@ public: | |||
55 | FluxboxWindow *findWindow(Window w); | 50 | FluxboxWindow *findWindow(Window w); |
56 | void exposeEvent(XExposeEvent *ee); | 51 | void exposeEvent(XExposeEvent *ee); |
57 | private: | 52 | private: |
53 | typedef LinkedList<IconBarObj> IconList; | ||
54 | typedef LinkedListIterator<IconBarObj> IconListIterator; | ||
55 | |||
58 | void draw(IconBarObj *obj, int width); | 56 | void draw(IconBarObj *obj, int width); |
59 | void loadTheme(unsigned int width, unsigned int height); | 57 | void loadTheme(unsigned int width, unsigned int height); |
60 | void decorate(Window win); | 58 | void decorate(Window win); |