Moved typedefs into class IconBar
This commit is contained in:
parent
31181406d0
commit
dbd3dfac7e
1 changed files with 3 additions and 5 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue