diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-05-12 20:56:40 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-05-12 20:56:40 +0000 |
| commit | 4969c1b08453a4048c94f207f0c02287bdbc1d0c (patch) | |
| tree | a5a12a1487b1847caa2d8722cc4b30820becfa53 /src/Screen.h | |
| parent | 30b899fc025e7fee283be7170bd642b509f5c7b5 (diff) | |
move some typedefs into class scope
Diffstat (limited to 'src/Screen.h')
| -rw-r--r-- | src/Screen.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Screen.h b/src/Screen.h index c59a2e95..15f83a22 100644 --- a/src/Screen.h +++ b/src/Screen.h @@ -55,10 +55,6 @@ #include <list> #include <vector> -typedef std::list<Rootmenu *> menuList; -typedef std::list<Netizen *> netList; -typedef std::vector<Workspace *> wkspList; -typedef std::vector<std::string> wkspNameList; // forward declaration class BScreen; @@ -116,8 +112,11 @@ private: Iconmenu *iconmenu; Rootmenu *rootmenu; + typedef std::list<Rootmenu *> menuList; menuList rootmenuList; + typedef std::list<Netizen *> netList; netList netizenList; + typedef std::list<OpenboxWindow *> winList; winList iconList; // winList is declared in Workspace.h #ifdef SLIT @@ -131,7 +130,9 @@ private: unsigned int geom_w, geom_h; unsigned long event_mask; + typedef std::vector<std::string> wkspNameList; wkspNameList workspaceNames; + typedef std::vector<Workspace *> wkspList; wkspList workspacesList; struct resource { |
