diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-04-27 18:53:59 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-04-27 18:53:59 +0000 |
| commit | b7d0a77d16e034097a15fb7a7175e0882f6dd429 (patch) | |
| tree | 95690933f64045be54bc586d6a9afee5ebe74bc3 /src/Slit.h | |
| parent | 5c9ab8b84508986974e89b929c6cfbbc1bf4486e (diff) | |
add std:: to the vector typedef in Basemenu
converted slit to use a std::list instead of LinkedList
Diffstat (limited to 'src/Slit.h')
| -rw-r--r-- | src/Slit.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -27,8 +27,8 @@ #include <X11/Xutil.h> #include "Basemenu.h" -#include "LinkedList.h" #include "Geometry.h" +#include <list> // forward declaration class Slit; @@ -105,7 +105,8 @@ private: Resource &config; BTimer *timer; - LinkedList<SlitClient> *clientList; + typedef std::list<SlitClient *> slitClientList; + slitClientList clientList; Slitmenu *slitmenu; struct frame { |
