Moved typedefs into class IconBar

This commit is contained in:
fluxgen 2001-12-17 19:26:26 +00:00
parent 31181406d0
commit dbd3dfac7e

View file

@ -25,8 +25,6 @@
#include "Window.hh"
#include "LinkedList.hh"
class Fluxbox;
class IconBarObj
{
public:
@ -39,9 +37,6 @@ private:
FluxboxWindow *m_fluxboxwin;
};
typedef LinkedList<IconBarObj> IconList;
typedef LinkedListIterator<IconBarObj> IconListIterator;
class IconBar
{
public:
@ -55,6 +50,9 @@ public:
FluxboxWindow *findWindow(Window w);
void exposeEvent(XExposeEvent *ee);
private:
typedef LinkedList<IconBarObj> IconList;
typedef LinkedListIterator<IconBarObj> IconListIterator;
void draw(IconBarObj *obj, int width);
void loadTheme(unsigned int width, unsigned int height);
void decorate(Window win);